HTML DOM中的DOM Input Button表单属性用于返回对包含Button字段is的表单的引用。它是只读属性,成功时将返回一个表单对象。
用法:
buttonObject.form
例:以下示例程序旨在说明Input Button表单属性的使用。
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
color:green;
}
</style>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>
DOM Input Button form Property
</h2>
<form id="myGeeks">
<!-- Assigning button id -->
<input type="button"
id="GFG"
onclick="myGeeks()"
name="Geek_button"
value="Submit">
</form>
<p id="sudo"
style="color:green;
font-size:25px;">
</p>
<script>
function myGeeks() {
// accessing 'button' id.
var g =
document.getElementById(
"GFG").form.id;
document.getElementById(
"sudo").innerHTML = g;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM输入Button表单属性支持的浏览器:
- 谷歌浏览器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相关用法
- HTML Button form用法及代码示例
- HTML Input Button name用法及代码示例
- HTML Input Button value用法及代码示例
- HTML Input Button type用法及代码示例
- HTML Input Button autofocus用法及代码示例
- HTML Input Button disabled用法及代码示例
- HTML Input URL form用法及代码示例
- HTML Input Checkbox form用法及代码示例
- HTML Input FileUpload form用法及代码示例
- HTML Input Search form用法及代码示例
- HTML Input Email form用法及代码示例
- HTML Input DatetimeLocal form用法及代码示例
- HTML Input Hidden form用法及代码示例
- HTML Input Image form用法及代码示例
- HTML Input Number form用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Button form Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。