如何在 HTML 中设置脚本异步执行?
使用 async 属性以按需异步执行脚本。它仅使用外部脚本。
首先,添加一个 js 文件。将其命名为 new.js,
function sayHello() { alert("Hello World") }
现在添加 HTML 代码并执行上述脚本 −
<html> <head> <script src = "new.js" ></script> </head> <body> <p>This is demo text.</p> </body> </html>
广告