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