搜索模块和简单验证

搜索模块和简单验证

比较简单,直接上代码自己体会

简单说明: 真正做项目的时候验证都会在js里面做

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>搜索框模块和简单验证</title>
</head>
<body>
<form action="myfirstweb.html">
    <p>搜索框:
        <input type="search" name="search">
    </p>

    <p>email:
        <input type="email" name="email">
    </p>
    <p>url:
        <input type="url" name="url">
    </p>
    <p>date:
        <input type="date" name="date" min="20220327" max="20220328">
    </p>
    <p>range:
        <input type="range" name="voice" min="0" max="100">
    </p>
    <p> 商品数量:
        <input type="number" name="num" min="0" max="10" step="1">
    </p>
    <p>
        <input type="submit">
    </p>
</form>

</body>
</html>
posted @ 2022-03-28 17:25  Oh,mydream!  阅读(31)  评论(0编辑  收藏  举报