4 回答
TA贡献345条经验 获得超309个赞
在 type="text" 和 type="password" 中,value代表默认值,就是 input 不进行任何操作时,输入框就存在的值.
在 type= "button" 和 type="submit" 和 type="reset" 中, value 代表按钮的名称.
在 type= " radio" 和 type= "checkbox" 中, value 定义与输入相关联的值.
望采纳!
TA贡献4条经验 获得超4个赞
就相当于赋值一样你在输入框中输入了什么就会把这个值赋给value,例如:在输入框中输入了 hello,那么 value='hello'.
在你提交数据的时候 name 里面的值会和 value 里面的值形成一个键值对的形式传到后台。
TA贡献188条经验 获得超91个赞
form method="post" action="save.php">
<label for="username">用户名:</label>
<input type="text" name="username" id="username" value="小明" />
<label for="pass">密码:</label>
<input type="password" name="pass" id="pass" value="123456" />
value 属性为 input 元素设定值。
name 和id一样都是标识,只不过name可以同名,取多个name时就以数组存取,document.getElementById('id').value
document.getElementsByName('name')[0].value
TA贡献2条经验 获得超1个赞
value是也来设置button按钮所显示的名字,在type=‘text’和type=‘password’中就只是两个框,没有按钮,所以可以说没有实际意义
- 4 回答
- 0 关注
- 1537 浏览
相关问题推荐
添加回答
举报