Reset form 屬性
Reset 對象定義和用法
form 屬性可返回對包含該重置按鈕的表單的引用。
若成功,該屬性返回一個(gè)表單對象。
語法
resetObject.form
瀏覽器支持
所有主要瀏覽器都支持 form 屬性
實(shí)例
實(shí)例
Display the id of the form containing the Reset button:
<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("reset1").form.id;
alert(x);
}
</script>
</head>
<body>
<form id="form1">
Email: <input type="text" id="email">
<input type="reset" id="reset1">
</form>
<button type="button" onclick="displayResult()">Display id of container form</button>
</body>
</html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("reset1").form.id;
alert(x);
}
</script>
</head>
<body>
<form id="form1">
Email: <input type="text" id="email">
<input type="reset" id="reset1">
</form>
<button type="button" onclick="displayResult()">Display id of container form</button>
</body>
</html>
嘗試一下 ?
Reset 對象
更多建議: