HTML DOM Reset form 屬性

2018-08-04 20:40 更新

Reset form 屬性

Reset 對(duì)象參考手冊(cè) Reset 對(duì)象

定義和用法

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

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

語(yǔ)法

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 對(duì)象參考手冊(cè) Reset 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)