刷新時清除所有文本框數據實例
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>標題頁</title>
</head>
<body onLoad="document.forms[0].reset()">
<form name="form1">
<input type=text name="txt1" value="第一個測試!">
<input type=text name="txt2" value="第二個測試!">
<input type=text name="txt3" value="第三個測試">
</form>
</body>
</html>