html中对于form下的input的不同类型,value的不同含义
1)写在按钮上,代表的是按钮上显示的名称。
<input type="button" value="按钮"> <input type="submit" value="提交">
2)写在输入框上,代表的是该输入框的默认值,每次加载初始会显示出来。
<input type="text" name="xxx" value="lisa">
3)写在单选框或者多选框上,代表的是交互数据的属性值,见下图
单选框:<input type="radio" name="单选框" value="dan"> <br> 多选框: 1:<input type="checkbox" name="1" value="one"> 2:<input type="checkbox" name="2" value="two"> 3:<input type="checkbox" name="3" value="three">
整体测试代码:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <form action="form1.html"> <input type="text" name="xxx" value="lisa"> <input type="password" name="hhh"> 单选框:<input type="radio" name="单选框" value="dan"> <br> 多选框: 1:<input type="checkbox" name="1" value="one"> 2:<input type="checkbox" name="2" value="two"> 3:<input type="checkbox" name="3" value="three"> <br> <input type="button" value="按钮"> <input type="submit" value="提交"> </form> </body> </html>