日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

登录页面带验证码html,使用H5+css3+js实现带验证码的登录页面

發布時間:2023/12/31 编程问答 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 登录页面带验证码html,使用H5+css3+js实现带验证码的登录页面 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

使用H5+css3+js實現帶驗證碼的登錄頁面

發布時間:2020-10-28 19:51:18

來源:億速云

閱讀:151

作者:Leah

本篇文章為大家展示了使用H5+css3+js實現帶驗證碼的登錄頁面,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

login.html

EasyBuy后臺管理系統

.main_bar{

width:1350px;

height:350px;

background-color:#6495ED;

margin-top:10%;

}

#login_form{

width:40%;

height:100%;

background-color:#112435;

margin:0 auto;

}

.title{

width:100%;

height:55px;

color:#ffffff;

border-bottom:1px solid #ffffff;

font-size:20pt;

font-family:"微軟雅黑";

line-height:55px;

text-align:center;

}

#form_widget{

width:100%;

height:295px;

background-color:#808080;

}

.txt{

display:block;/*設置為獨立塊(換行)*/

width:70%;

margin:0 auto;

height:35px;

font-size:15pt;

border-radius:5px;/*設置圓角樣式*/

border:0;

padding-left:8px;

}

#vcode{

height:35px;

width:40%;

font-size:15pt;

margin-left:15%;

border-radius:5px;

border:0;

padding-left:8px;

}

#code{

color:#ffffff;/*字體顏色白色*/

background-color:#000000;

font-size:20pt;

font-family:"華康娃娃體W5";

padding:5px 35px 10px 35px;

margin-left:5%;

cursor:pointer;

}

#search_pass_link{

width:70%;

text-align:right;

margin:0 auto;

padding:5px;

}

/*層級選擇器*/

#search_pass_link a{

color:#000000;

text-decoration:none;

}

/*偽類*/

#search_pass_link a:hover{

color:#ff0000;

text-decoration:underline;

}

.btn{

width:70%;

margin-left:15%;

height:40px;

border:0;

font-size:14pt;

font-family;"微軟雅黑";

background-color:#FC5628;

color:#ffffff;

cursor:pointer;/*設置指針鼠標的樣式*/

border-radius:20px;/*設置圓角樣式*/

border:0;

}

#copyright{

width:100%;

text-align:center;

padding-top:20px;

font-family:"微軟雅黑";

color:#e0e0e0;

}

EasyBuy系統登錄

忘記密碼?

Power By WXH ?CopyRight 2016

var code;//聲明一個變量用于存儲生成的驗證碼

document.getElementById("code").οnclick=changeImg;

function changeImg(){

//alert("換圖片");

var arrays=new Array(

'1','2','3','4','5','6','7','8','9','0',

'a','b','c','d','e','f','g','h','i','j',

'k','l','m','n','o','p','q','r','s','t',

'u','v','w','x','y','z',

'A','B','C','D','E','F','G','H','I','J',

'K','L','M','N','O','P','Q','R','S','T',

'U','V','W','X','Y','Z'

);

code='';//重新初始化驗證碼

//alert(arrays.length);

//隨機從數組中獲取四個元素組成驗證碼

for(var i=0;i<4;i++){

//隨機獲取一個數組的下標

var r=parseInt(Math.random()*arrays.length);

code+=arrays[r];

//alert(arrays[r]);

}

//alert(code);

document.getElementById('code').innerHTML=code;//將驗證碼寫入指定區域

}

//效驗驗證碼(表單被提交時觸發)

function check(){

//獲取用戶輸入的驗證碼

var input_code=document.getElementById('vcode').value;

//alert(input_code+"----"+code);

if(input_code.toLowerCase()==code.toLowerCase())

{

//驗證碼正確(表單提交)

return true;

}

alert("請輸入正確的驗證碼!");

//驗證碼不正確,表單不允許提交

return false;

}

上述內容就是使用H5+css3+js實現帶驗證碼的登錄頁面,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

總結

以上是生活随笔為你收集整理的登录页面带验证码html,使用H5+css3+js实现带验证码的登录页面的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。