1. 行内式 JS

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

2. 内嵌 JS

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

3. 外部 JS

        <script src="01.js入门.js">