简单教程
提交运行
代码编辑器:
<h1>JavaScript 基础教程</h1> <p id="demo">JavaScript 能改变 HTML 元素的内容</p> <script> function myFunction() { x=document.getElementById("demo"); // 找到元素 x.innerHTML="Hello JavaScript!"; // 改变内容 } </script> <button type="button" onclick="myFunction()">点击这里</button>
运行结果: