老师,请帮忙检查一下,还有一个小问题,这些新增加的属性有value值吗
来源:2-7 编程练习
慕神8387157
2019-05-05 20:52:53
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>date pickers</title>
</head>
<body>
<form action="action.php">
姓名:<input type="text" name="xingming" placeholder="请输入姓名"><br/>
性别:男<input type="radio" name="sex" value="man">女:<input type="radio" name="sex" value="woman"><br/>
出生日期: <input type="date" name="date"><br/>
出生月份: <input type="month" name="month"><br/>
出生周数: <input type="week" name="week"><br/>
<input type="submit">
</form>
</body>
</html>
1回答
好帮手慕星星
2019-05-06
你好,代码没有问题。
新type类型的input标签是有value属性的,例如:

祝学习愉快!
相似问题