作者 anyv
1 个管道 的构建 通过 耗费 0 秒

登录

@@ -21,15 +21,29 @@ @@ -21,15 +21,29 @@
21 <form class="form"> 21 <form class="form">
22 <ul> 22 <ul>
23 <li> 23 <li>
24 - <input type="text" placeholder="請輸入您的用戶名"> 24 + <input type="text" name="name" placeholder="請輸入您的用戶名">
25 </li> 25 </li>
26 <li style="border:0"> 26 <li style="border:0">
27 - <input type="password" placeholder="請輸入您的密碼"> 27 + <input type="password" name="pass" placeholder="請輸入您的密碼">
28 </li> 28 </li>
29 </ul> 29 </ul>
30 - <button type="button">登錄</button> 30 + <button type="button" onclick="tlogin()">登錄</button>
31 </form> 31 </form>
32 </div> 32 </div>
33 </body> 33 </body>
34 - 34 +<script>
  35 + function tlogin(){
  36 + name = $("input[name='name']").val();
  37 + pass = $("input[name='pass']").val();
  38 + if(name == ''){
  39 + alert('账号不能为空');
  40 + }else{
  41 + if(pass == ''){
  42 + alert('密码不能为空');
  43 + }else{
  44 + alert('成功');
  45 + }
  46 + }
  47 + }
  48 +</script>
35 </html> 49 </html>