HTML DOM Reset form 屬性

2018-08-04 20:40 更新

Reset form 屬性

Reset 對象參考手冊 Reset 對象

定義和用法

form 屬性可返回對包含該重置按鈕的表單的引用。

若成功,該屬性返回一個(gè)表單對象。

語法

resetObject.form


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 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>

嘗試一下 ?


Reset 對象參考手冊 Reset 對象
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號