1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>入门案例</title>
- </head>
- <body>
- <!--
- sub_btn id 唯一的
- button 按钮
- -->
- <button id="sub_btn" >hello按钮</button>
- </body>
- <!-- js文件中 js代码 -->
- <script>
- //获取到元素
- let btn = document.getElementById("sub_btn");
- //添加事件 点击事件
- btn.onclick = function (){
- //控制台输入
- console.log("hello") //println
- // 内置函数
- alert("hello world")
- }
- </script>
- </html>
|