1. 行内式 JS

        <input type="text" onclick="alert('hello')">
        <button onclick="alert('hello')">按钮提交</button>
    

2. 内嵌 JS

        <script>
            alert('Hello World~! 我是内嵌式 JS');
        </script>
    

3. 外部 JS

        // 引入外部 JS 文件
        <script src="./41.html">