为了账号安全,请及时绑定邮箱和手机立即绑定

form表单知识点集合

标签:
Html/CSS Html5
<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>form交互表单</title>
    </head>
    <body>
        <form  method="post" action="save.php">
        <label>用户登陆</label><br/>
        <label for="one">账号:</label>
        <input type="text" name="text" id="one" value="在此输入用户名"/><br/>
        <label for="two">密码:</label>
        <input type="password" name="passwords" id="two"/>
        <input type="submit" name="submit" value="发送"/>
        <input type="reset" name="submit" value="重置"/>
        </form>
        <hr>
        <form>
        <label>性别:</label><br/>
        <label for="boy">男</label>
        <input type="radio" name="boy" id="boy"/><br/>
        <label for="girl">女</label>
        <input type="radio" name="boy" id="girl"/>
        </form>
        <hr>
        <form>
            <label>爱好:</label><br/>
            <label for="pear">梨子</label>
            <input type="checkbox" name="fruit" id="pear"/><br/>
            <label for="banana">香蕉</label>
            <input type="checkbox" name="fruit" id="banana"/><br/>
            <label for="orange">桔子</label>
            <input type="checkbox" name="fruit" id="orange"/><br/>
            <label for="apple">苹果</label>
            <input type="checkbox" name="fruit" id="apple"/>
        </form>
        <hr>
        <form>
            <label>球类运动:</label><br/>
            <select>
                <option value="篮球">篮球</option>
                <option value="足球">足球</option>
                <option value="排球">排球</option>
                <option value="网球" selected="selected">网球</option>
            </select>
        </form>
        <hr>
        <form>
            <label>喜欢的球类运动:</label><br/>
            <select multiple="multiple">
                 <option value="篮球">篮球</option>
                <option value="足球">足球</option>
                <option value="排球">排球</option>
                <option value="网球">网球</option>
                <option value="铅球">铅球</option>
                <option value="桌球">桌球</option>
            </select>
        </form>

    </body>
</html>
点击查看更多内容
2人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消