91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

js 判斷登錄界面的賬號密碼是否為空

發布時間:2020-10-16 11:34:31 來源:腳本之家 閱讀:180 作者:紫曦離殤 欄目:web開發

判斷登錄界面的賬號密碼是否為空的時候又不想用alert顯示就需要用display來隱藏alert啦(在設置時切忌要將隱藏的內容寫在賬號和密碼的div中,否則會根據屏幕的分辨率不同而有所變化,這是本人教訓)

首先要定義賬號、密碼和隱藏部分的id,即var x=document.getElementById("id"),包括按鈕的id,然后點擊登錄按鈕的時候(btn.onclick=function(){具體的選擇隱藏和顯示的內容})要寫函數進行選擇隱藏和顯示;在重置按鈕的是(btn.onclick=function(){清空的內容,包括登錄按鈕顯示的內容})

具體代碼如下:

<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="UTF-8" />
<title>請登錄</title><base target="_blank" /> 
<style>
 body{
 margin:0px auto;
 background-image: url(images/dlbj1.png) ;
 position: relative;
 }
 .dl{
 width: 380px ;
 height: 220px ;
 background-image: url(images/dl.png) ;
 text-align: center ;
 margin: auto ;
 margin-top: 15% ; 
 position: center; 
 } 
 .btn{
 font-family : 微軟雅黑 ;
 font-size: medium ;
 }
 #username{
 max-width: 200px ;
 margin: 10px 0px 0px 0px ;
 height: 28px ;
 }
 #us{
 color: #FFFFFF ;
 font-family : 微軟雅黑;
 }
 #ps{
 color: #FFFFFF ;
 font-family : 微軟雅黑;
 }
 #password{
 max-width: 200px ; 
 margin: 20px 0px 10px 0px ;
 height: 28px ;
 }
</style>
</head>
<body>
 <form class="dl" method="post">
 <div class="dlsy">
 <br/><br/><br/>
 <div class="username">
 賬號:<input type="text" id="username"/><span id="u" >*請輸入賬號!</span>
 </div>
 <div class="password">
 密碼:<input type="password" id="password"/><span id="p" >*請輸入密碼!</span>
 </div>
 <div class="empty">
 <span id="up" >*賬號或密碼錯誤</span>
 </div>
 <div class="btn">
 <button type="button" id="reset" class="btn btn-default button-rounded button-small">重置</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 <button type="button" id="submit" class="btn btn-default button-rounded button-small">登錄</button>
 </div>
 </div>
 </form> 

 <script type="text/javascript">
 var x=document.getElementById("username");
 var y=document.getElementById("password");
 var btnSubmit = document.getElementById("submit");
 var btnReset = document.getElementById("reset");
 var u=document.getElementById("u");
 var p=document.getElementById("p");
 var up=document.getElementById("up");
 //點擊登錄按鈕時判斷賬號、密碼是否為空或錯誤
 btnSubmit.onclick=function(form){
 if(x.value==""){
  if(y.value==""){
  up.style.display="block";
  }
  else{
  u.style.display="block";
  up.style.display="none";
  }
  }
 else if(y.value==""){
  if(x.value==""){
  up.style.display="block";
  }
  else{
  p.style.display="block";
  up.style.display="none";
  }
 }
 else{
  u.style.display="none";
  up.style.display="block";
  p.style.display="none";
 }
 }
 //點擊重置按鈕時清空賬號密碼
 btnReset.onclick=function(form){
  x.value=""; //清空input里的value
 y.value="";
 u.style.display="none";
 up.style.display="none";
  p.style.display="none";
 } 
 /*btn.onclick=function(form){
 /*if (x!="admin"||y!=123456){
 alert('賬號或密碼錯誤!');
 }
 //判斷賬號密碼是否為空則彈出
 if (""==x) {
 alert("請輸入賬號!");
 flag=false;
 return false; 
 }
 else if(""==y){
 alert("請輸入密碼!");
 flag=false;
 return false;
 }
 if(flag==true){
 flag=true;
 }*/
</script>
</body>
</html>

以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持億速云!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

伊金霍洛旗| 福安市| 成都市| 石门县| 肇东市| 衡阳县| 轮台县| 平凉市| 庆安县| 宁河县| 吉林省| 南安市| 大庆市| 上犹县| 巢湖市| 邳州市| 房产| 汉阴县| 福海县| 潍坊市| 方正县| 永登县| 邢台县| 温泉县| 横峰县| 宣汉县| 辽宁省| 寿宁县| 祥云县| 那曲县| 定州市| 延边| 古田县| 南平市| 余姚市| 南靖县| 江阴市| 鸡泽县| 香格里拉县| 兴化市| 台南县|