HTML DOM中的DOM输入数字类型属性用于返回所提交数字的表单元素的类型。它总是返回输入数字字段的文本。
用法:
numberObject.type
以下示例程序旨在说明HTML DOM中的数字类型属性:
例:本示例返回number字段的form元素的类型。
<!DOCTYPE html>
<html>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Input Number type Property</h2>
<input type="number"
id="myNumber"
value="10"> <br><br>
<button onclick="myFunction()">
Click Here!
</button>
<p id="demo" style="font-size:23px;color:green;"></p>
<script>
function myFunction() {
// Accessing input value
var x =
document.getElementById("myNumber").type;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM输入数字类型“属性”支持的浏览器:
- 谷歌浏览器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相关用法
- HTML Input URL type用法及代码示例
- HTML Input Search type用法及代码示例
- HTML Input Hidden type用法及代码示例
- HTML Input Image type用法及代码示例
- HTML Input Range type用法及代码示例
- HTML Input Color type用法及代码示例
- HTML Input Checkbox type用法及代码示例
- HTML Input Button type用法及代码示例
- HTML Input Time type用法及代码示例
- HTML Input Datetime type用法及代码示例
- HTML Input DatetimeLocal type用法及代码示例
- HTML Input Month type用法及代码示例
- HTML Input Radio type用法及代码示例
- HTML Input Submit type用法及代码示例
- HTML Input Reset type用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Number type Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。