返回列表 發帖

JavaScript 基礎語法 (二)

本帖最後由 陳育霖 於 2023-9-1 16:23 編輯

在HTML中輸出內容
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.     </head>
  6.     <body>
  7.         <p id="output100"></p>
  8.         <script>
  9.             document.getElementById("output100").innerHTML = 100;
  10.         </script>
  11.     </body>
  12. </html>
複製代碼
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.     </head>
  6.     <body>
  7.         <p>OK點OK</p>
  8.         <button type="button" onclick="document.write('OK')">OK</button>
  9.     </body>
  10. </html>
複製代碼

返回列表