input框属性设置方法 input属性有哪些

第一种:通过获取DOM来获得input值 , 这个比较常见 。

input框属性设置方法 input属性有哪些

文章插图
第二种:通过给form表单添加name属性 , 然后以对象点的方式获取input的name值 。
<html>
<head>
<meta charset=”utf-8″>
</head>
<body>
<form name=”form”>
【input框属性设置方法 input属性有哪些】<input type=”text” name=”element” />
</form>
<script>
function print() {
console.log(form.element.value);
}
print();
</script>
</body>
</html>

    推荐阅读