实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p id="demo">Click the button to change the text in this paragraph.</p>
6
7
<button onclick="myFunction()">Try it</button>
8
9
<script>
10
11
function myFunction()
12
{
13
document.getElementsByTagName("P")[0].innerHTML="Hello World";
14
};
15
16
</script>
17
18
</body>
19
</html>
20