-
Notifications
You must be signed in to change notification settings - Fork 0
/
脚本.html
48 lines (46 loc) · 1.28 KB
/
脚本.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>脚本</title>
</head>
<body>
<script>
document.write("你好!")
</script>
<noscript>标签,你的浏览器不支持JavaScript!</noscript>
<p>不支持 JavaScript 的浏览器会使用 noscript 元素中定义的内容(文本)来替代。</p>
<p>
Javascript 能够直接写入HTML输出流中:
</p>
<script>
document.write("<h1>这是一个标题</h1>");
document.write("<p>这是一个段落</p>");
</script>
<p>您只能在HTML输出流中使用<strong>document.write</strong>
如果您在文档已加载后使用它(比如函数中),会覆盖整个文档
</p>
<h1>My Frist JavaScript</h1>
<p id="demo">JavaScript can react to events. Like the click of a button.
</p>
<script>
function myFunction()
{
document.getElementById("demo").innerHTML="Hello JavaScript"
}
</script>
<button type="button" onclick="myFunction()">Click Me!</button>
<h1>我的第一段JavaScript</h1>
<p id="demo2">
JavaScript 能改变HTML元素的样式.
</p>
<script>
function myFunction()
{
x=document.getElementById("demo2")//找到元素
x.style.color="#FF0000"; //改变样式
}
</script>
<button type="button" onclick="myFunction()">点击这里 </button>
</body>
</html>