Password form 屬性
Password 對(duì)象定義和用法
form 屬性可返回對(duì)包含該密碼域的表單的引用。
該屬性將返回一個(gè)表單對(duì)象。
語(yǔ)法
passwordObject.form
瀏覽器支持
所有主要瀏覽器都支持 form 屬性
實(shí)例
實(shí)例
下面的例子取得了該密碼域所屬的表單的 id:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
<script>
function displayResult(){
var x=document.getElementById("pwd").form.id;
alert(x);
}
</script>
</head>
<body>
<form id="form1">
密碼: <input type="password" id="pwd">
</form>
<button type="button" onclick="displayResult()">顯示所屬的表單id</button>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
<script>
function displayResult(){
var x=document.getElementById("pwd").form.id;
alert(x);
}
</script>
</head>
<body>
<form id="form1">
密碼: <input type="password" id="pwd">
</form>
<button type="button" onclick="displayResult()">顯示所屬的表單id</button>
</body>
</html>
嘗試一下 ?
Password 對(duì)象
更多建議: