📌  相关文章
📜  如何在 HTML5 中定义客户端脚本?

📅  最后修改于: 2021-11-07 08:19:50             🧑  作者: Mango

要在 HTML5 中定义客户端脚本,我们可以做

以下是上述方法的示例:

示例 1:此处使用


index.html



    

External JavaScript

    

      This is before you click the button     

                     


main.js
function clickMe() {
     document.getElementById("id1").innerHTML = 
     "This is after you click the button";
}


输出:

示例 2:此处,外部 JavaScript 用于编写脚本。

索引.html




    

External JavaScript

    

      This is before you click the button     

                     

主文件

function clickMe() {
     document.getElementById("id1").innerHTML = 
     "This is after you click the button";
}

输出: