x
 
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮可显示密码字段所属表单的 ID。</p>
<form id="myForm">
密码:<input type="password" id="myPsw">
</form><br>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("myPsw").form.id;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>