问答详情
源自:6-2 先来填用户名和密码 - 文本输入框、密码输入框

设定账户跟密码怎么弄。

  1. 设定账户跟密码怎么弄。

  2. 在这个基础上又如何添加  登录跟注册这两个内容。


提问者:qq_郁倦夏风只送不宁_0 2017-11-04 16:00

个回答

  • BiggestMonster
    2017-11-04 16:41:11
    已采纳

    <!DOCTYPE HTML>


    <html>


    <head>


    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">


    <title>Title</title>

    <script type="text/javascript">  

        function regist() {  

            window.open('Untitled-2.html'); 

            window.location.href = 'Untitled-2.html';  

        }  

    </script>  


    </head>




    <body>


    <form>


      <label for="UserName">输入您的账号</label>


      <input type="text" id="UserName" placeholder="Enter Your Name">

      <br />


      <label for="Password">输入您的密码</label>


      <input type="password" id="Password" placeholder="Enter Password">

      <br />


      <input type="submit" value="登陆" name="LoginBtn" />

      <input type="button" value="注册" name="SigninBtn" onclick="regist()">


    </form>




    </body>


    </html>


  • 慕粉6416531
    2017-11-04 16:15:41

    input或者botton标签,登录和注册加超链接就可以了