標籤:
對事件作出反應\
<!-- alert() 函數在 JavaScript 中並不常用,但它對於代碼測試非常方便。
onclick 事件只是您即將在本教程中學到的眾多事件之一。-->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<center>
<body>
<h1>我的第一段 Java Script 代碼</h1>
<p>
JavaScript 能夠對事件作出反應。比如對按鈕的點擊:
</p>
<button type="button" onclick="alert(‘Welcome!‘)">點擊這裡</button>
</body>
</center>
</html>
改變 HTML 內容\
<!--您會經常看到 document.getElementByID("some id")。這個方法是 HTML DOM 中定義的。
DOM(文件物件模型)是用以訪問 HTML 元素的正式 W3C 標準。
-->
<!-- 在這個例子中應當注意
1.getElementById 千萬不要寫錯
2.id號可以是不同的,根據自己的需要自己定義,調用的時候要一一對應
3.編碼格式要注意,在head中添加utf-8
4.<button type="button" onclick="myFunction()">點擊這裡</button>這段代碼不是在script標籤中!!!
5.結合事件處理來修改自己的代碼
-->
<!DOCTYPE html>
<html>
<head>
<title>Change html content</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<center>
<body>
<h1>我的第一段 JavaScript</h1>
<p id="demo">
JavaScript 能改變 HTML 元素的內容。
</p>
<p id="Angel">
U o _ o U
</p>
<script>
function myFunction()
{
x=document.getElementById("demo");//尋找元素
x.innerHTML="Hello JavaScript!";//改變內容
}
function myFunction_1()
{
y=document.getElementById("Angel");
y.innerHTML="Today is a fun day!";
}
</script>
<button type="button" onclick="myFunction()">點擊這裡</button>
<button type="button" onclick="myFunction_1()">點擊這裡</button>
</body>
</center>
</html>
改變 HTML 樣式\
<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<center>
<p id="demo">
Happy Birthday To You !!!
</p>
<body>
<script>
function myfunction()
{
x=document.getElementById("demo") // 找到元素
x.style.color="#ff0000"; // 改變樣式
}
</script>
<button typte="button" onclick="myfunction()">點擊開始</button>
</body>
</center>
</html>
寫入HTML輸出
<!--只能在 HTML 輸出中使用 document.write。如果您在文檔載入後使用該方法,會覆蓋整個文檔。-->
<!DOCTYPE html>
<html>
<center>
<head>
<title></title>
</head>
<body>
<script>
document.write("<h1>This is a heading</h1>");
document.write("<p>This is a paragraph</p>");
</script>
</body>
</center>
</html>
JavaScript-對事件作出反應\改變 HTML 內容\改變 HTML 樣式\寫入HTML輸出