zoukankan      html  css  js  c++  java
  • 第五周技术博客发表 web 网页开发

    <html>
    <head>
     <title> HTML</title>
    </head>
    <body >
     <h1>会员注册界面</h1>
    <form action="../../../../process.aspx" method="post" name="f1">
     用户名称:<input type="text" name="user" value="张三 " id="name2"></br>
     联系电话:<input type="text" value="13705025431" id="dh"></br>
     密码:<input type="password"></br>
     确认密码:<input type="password"></br>
     性别:<input type="radio" name="malew" value="male" checked="true">男
     <input type="radio" name="malew" value="female">女
     </br>
     爱好

     <input type="checkbox" name="sport" value="sport" checked="true">体育<br>
     <input type="checkbox" name="music" value="music">音乐<br>
     <input type="checkbox" name="wenxue" value="wenxue">文学<br>
     <input type="checkbox" name="qita" value="qita">其他<br>
     <input type="button" value="测试" id="tbtn"  name="sub" onClick="text();" /> </br>
     
     特长
        <select name ="sports">
    <option value="书法">书法
    <option value="书法">文学写作
    <option value="书法">阅读
    </select>
    </form>
      <script type="text/javascript" >
      function tese()
     {
     var str=document.getElementById("name2").value;
      document.writeln(str);
       var str=document.getElementById("dh").value;
       document.writeln(str);
      }
     </script>
    </body>
    </html>

    <!--         13705025431             -->

  • 相关阅读:
    工作总结_JS_1
    工作总结_js
    图片上传_及时显示
    js_截取Url值
    工作总结_sql
    Django项目配置xadmin 无法加载主题切换功能
    pip安装库慢问题解决方法
    Python模块Scrapy导入出错:ImportError: cannot import name xmlrpc_client
    python读取文件解码失败
    pycharm 修改新建文件时的头部模板
  • 原文地址:https://www.cnblogs.com/youu/p/5317522.html
Copyright © 2011-2022 走看看