• html--表单


    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="utf-8">
        <title>information survey</title>
    </head>
    <body>
        <form action="" method="get">
            <fieldset>
                <legend>information survey</legend>
                name:<br>
                <input type="text" name="name"><br>
                birthday:<br>
                <input type="text" name="birthday"><br>
                sex:<br>
                <select name="work">
                    <option value="teacher">teacher</option>
                    <option value="police">police</option>
                    <option value="student">student</option>
                    <option value="others">others</option>
                </select>
                <br>
                sex:
                <input type="radio" name="sex" value="male">male
                <input type="radio" name="sex" value="female">female
                <br>
                <input type="submit" value="Subscribe">
            </fieldset>
        </form>
    </body>
    </html>

  • 相关阅读:
    QtDBus编程详解
    QProcess详解
    python 爬虫 亚航 指定日期间的航线
    python 模块
    centos postgres 安装、远程连接
    python 爬虫 anyproxy
    python_scrapy_filespipe重写
    python_xpath
    常见问题汇总
    python_scrapy_log日志
  • 原文地址:https://www.cnblogs.com/925039847z/p/9651923.html
Copyright © 2020-2023  润新知