DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> javascript基礎第一章 JavaScript與用戶端
javascript基礎第一章 JavaScript與用戶端
編輯:JavaScript基礎知識     
一 頁面輸出
1.頭部文件
復制代碼 代碼如下:
<head>
<script language="javascript">
document.write("www.jb51.net");
</script>
</head>

2.頁面內
復制代碼 代碼如下:
<body>
<script>
document.write("");
</script>
</body>

3.外部文件
<script src="display.js"></script>
4.利用頁面ID的innerHtml
復制代碼 代碼如下:
<script>
window.onload = writeMessage; // 頁面加載時調用writeMessage函數
writeMessage() {
document.getElementById("helloMessage").innerHTML = "";
//找到dom ID(helloMessage),修改其html內容
}
</script>

5.警告
alert("廣州百匯物流有限公司");
6.詢問
復制代碼 代碼如下:
if (confirm("是否訪問我們的首頁"))
{
alert("是的,前往");
}
else {
alert("退出");
}
7.輸入
復制代碼 代碼如下:
var ans = prompt("輸入你的留言","您好,");
if (ans) {
alert("你說:" + ans);
}
else {
alert("退出,沒有留言");
}

8.頁面跳轉
復制代碼 代碼如下:
<script>
window.onload = initAll;
function initAll() {
document.getElementById("redirect").onclick = initRedirect;
}
function initRedirect()
{
window.location = "index.html";
return false;
}
</script>
<a href="http://www.jb51.net" id="redirect"></a>

9.判斷分支
復制代碼 代碼如下:
<script>
window.onload = initAll;
function initAll() {
document.getElementById("Lincoln").onclick = saySomething;
document.getElementById("Kennedy").onclick = saySomething;
document.getElementById("Nixon").onclick = saySomething;
}
function saySomething() {
switch(this.id) {
case "Lincoln":
alert("Four score and seven years ago...");
break;
case "Kennedy":
alert("Ask not what your country can do for you...");
break;
case "Nixon":
alert("I am not a crook!");
break;
default:
}
}
</script>
<form action="#">
<input type="button" id="Lincoln" value="Lincoln" />
<input
type="button" id="Kennedy" value="Kennedy" />
<input type="button" id="Nixon"
value="Nixon" />
</form>

10.異常捕獲
復制代碼 代碼如下:
window.onload = initAll;
function initAll() {
var ans = prompt("輸入參數:","");
try {
if (!ans || isNaN(ans) || ans<0) {
throw new Error("輸入為非數");
}
alert("根號" + ans + " 是 " + Math.sqrt(ans));
}
catch (errMsg) {
alert(errMsg.message);
}
}
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved