0
点赞
收藏
分享

微信扫一扫

html5邮箱的验证,html5url验证,html5number验证,html5range的验证


1.邮箱的验证

<form action="../js/test9.html" method="get">
Email<input type="email" name="getEmail">
<input type="submit" value="提交">
</form>

2.url验证

<form action="../js/test9.html" method="get">
url<input type="url" name="getUrl" >
<input type="submit" value="提交">
</form>

3.number验证

<form action="../js/test9.html" method="get">
number<input type="number" name="getNumber" min="1" max="2" >
<input type="submit" value="提交">
</form>

4.range的验证

<form action="../js/test9.html" method="get">
range<input type="range" name="getRange" min="1" max="4" >
<input type="submit" value="提交">
</form>



举报

相关推荐

0 条评论