2-8编程练习是这样的吗
来源:2-11 编程练习
yjw123
2018-01-06 11:57:06
<html>
<head>
<meta charset="utf-8">
<title>input新增类型</title>
</head>
<body>
<p>请选择您需要的数值 ,数值的范围是最大100,最小10:</p>
<input type="range" min="10" max="100">
<!-- 补充代码 -->
<br><br>
<span>请选择您喜欢的颜色 :</span>
<input type="color">
<!-- 补充代码 -->
<br><br>
<span>请输入要搜索的内容 :</span>
<input type="search">
<!-- 补充代码 -->
</body>
</html>
1回答
效果实现的很好,继续加油~
相似问题