2-3编程练习是这样的吗
来源:2-2 编程练习
yjw123
2018-01-06 11:29:45
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>input新增类型</title>
</head>
<body>
<p>请输入手机号码:</p>
<input type="tel">
<!-- 补充代码 -->
<p>请输入URL地址:</p>
<input type="url">
<!-- 补充代码 -->
<p>请输入邮箱:</p>
<input type="email">
<!-- 补充代码 -->
<p>请选择数值:</p>
<input type="number">
<!-- 补充代码 -->
</body>
</html>
1回答
效果实现的是可以的,继续加油~
相似问题