• 关于<marquee>、<form>、input中的<text>、<password>、<hidden>、<wenbenkuang>、<reset>、<image>、<submit>、<radio>、<checkbox>以及<select><iframe src>的用法


    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
        </head>
        <body>
            <marquee height="100" direction="up" scrollamount="2">小苹果</marquee>
            <p>我<mark>爱</mark>你</p>
            <div style="color: red;">我爱你</div>
            <form action="练习.html" method="get">
                <!--文本类-->
                <input type="text" name="a1" id="a1" value="" placeholder="账号" readonly="readonly"/>&nbsp;账号<br />
                <input type="password" name="mima" id="mima" value="" />&nbsp;密码<br />
                <input type="hidden" name="yincang" id="yincang" value="" /><br />
                <textarea name="wenbenkuang" rows="10" cols="10"></textarea><br />
                <!--按钮类-->
                <input type="button" name="a2" id="" value="注册" />不能用<br />
                <input type="reset" name="" id="" value="重置" /><br />
                <input type="image" src="../3.28/1.jpg" name="" id="" value="提交" /><br />
                <input type="submit" name="" id="" value="提交" /><br />
                <input type="file" name="" id="" value="" /><br />
                <!--选择类-->
                <input type="radio" name="1" id="" value="0" />男
                <input type="radio" name="1" id="" value="1" />女
                <br />
                <input type="checkbox" name="shouji1" id="" value="pingguo" checked="checked"/>苹果
                <input type="checkbox" name="shouji2" id="" value="xiaomi" />小米
                <input type="checkbox" name="shouji3" id="" value="huawei" />华为
                <input type="checkbox" name="shouji4" id="" value="oppo" disabled="disabled"/>oppo
                <br />
                <select name="下拉">
                    <option value="1">企业文化</option>
                    <option value="2">联系方式</option>
                    <option value="3">企业地址</option>
                    <option value="4">产品介绍</option>
                    <option value="1" selected="selected">企业背景</option>
                </select>
            </form>
            <iframe src="练习.html" width="1000" height="1000" ></iframe>
        </body>
    </html>

  • 相关阅读:
    oracle之修改/忘记用户密码
    linux 使用错误总结
    oracle数据库之用户管理
    linux命令使用总结
    linux各种压缩包的压缩和解压方法
    logback将日志写入不同文件夹里
    nginx下配置多个web服务
    OKHttp3学习
    linux 发送 post 请求
    maven 项目下 Maven Dependencies 下列表为空
  • 原文地址:https://www.cnblogs.com/hankai2735/p/8707113.html
Copyright © 2020-2023  润新知