如何用js获取按钮所在form表单的id?获取到表单id后便可以进行相关属性的设置,这里分享下javascript获取按钮所在form表单id的方法,一起来了解下。
javascript获取按钮所在form表单id
例子:使用javascript获取form表单按钮的id,见如下js代码中的获取方法。
复制代码 代码示例:
<!doctype html>
<html>
<body>
<h1>form表单id</h1>
<form id="form1">
<button id="button1" type="button">Click me!</button>
</form>
<p>The id of the form containing the button is:
<script>
document.write(document.getElementById("button1").form.id);
</script></p>
</body>
</html>
运行结果:
The id of the form containing the button is:button1