外部文件中的 JavaScript

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h2>外部 JavaScript</h2>
  6.  
  7. <p id="demo">一个段落。</p>
  8.  
  9. <button type="button" onclick="myFunction()">试一试</button>
  10.  
  11. <p>(myFunction 存储在名为 "myScript.js" 的外部文件中。)</p>
  12.  
  13. <script src="/demo/myScript.js"></script>
  14.  
  15. </body>
  16. </html>