zoukankan      html  css  js  c++  java
  • 关于<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>

  • 相关阅读:
    装饰器
    返回函数
    用Token令牌维护微服务之间的通信安全的实现
    用Windbg来分析.Net程序的dump
    Windows下docker的安装,将ASP.NET Core程序部署在Linux和Docker中
    StackExchange.Redis学习笔记(五) 发布和订阅
    StackExchange.Redis学习笔记(四) 事务控制和Batch批量操作
    StackExchange.Redis学习笔记(三) 数据库及密码配置 GetServer函数
    StackExchange.Redis学习笔记(二) Redis查询 五种数据类型的应用
    Task及Mvc的异步控制器 使用探索
  • 原文地址:https://www.cnblogs.com/hankai2735/p/8707113.html
Copyright © 2011-2022 走看看