在ASP程序中我們經常會要求用戶填寫一個表單
只是一個簡單的實例
HTML表單
<form action=
Name and Surname: <br/>
<input type=
Email: <br/>
<input type=
Age: <br/>
<input type=
Gender: <br/>
<select size=
<option>
<option value=
<option value=
</select> <br/>
<input type=
</form>
其中Check()函數是用來檢測表單內容的
JavaScript函數
<SCRIPT LANGUAGE=
function check() {
var nameandsurname = document
var email = document
var age = document
var gender = document
if ( nameandsurname
alert(
nameandsurname
} else if ((email
alert(
email
} else if (! (parseInt(age
alert(
age
} else if (gender
alert(
gender
} else {
document
}
}
</SCRIPT>
把上面的javascript代碼放到你的網頁的<head> </head>之間就可以了!
From:http://tw.wingwit.com/Article/program/net/201311/12812.html