JS實現登陸介面

2021-10-10 15:58:09 字數 3276 閱讀 7923

lang

="en"

>

>

charset

="utf-8"

>

name

="viewport"

content

="width=device-width, initial-scale=1.0"

>

>

documenttitle

>

>

input

divstyle

>

head

>

>

"myform"

>

登陸:type

="text"

id="t1"

value="

">

>

密碼:type

="password"

id="t2"

value="

">

>

確認密碼:type

="password"

id="t3"

value="

">

>

電子郵件:type

="text"

id="t4"

value="

">

>

type

="submit"

value

="登陸"

>

form

>

>

window.

onload

=function()

function

checkall()

}function

username()

if(strname.length<

4||strname.length>16)

return

true;}

function

checkpass()

if(pass.length<

6||pass.length>32)

return

true;}

function

checkrpass()

return

true;}

function

checkemail()

if(email.

indexof

("@")==

-1&&email.

indexof

(".")==

-1)return

true;}

script

>

body

>

html

>

所學知識淺薄 再給他稍微優化一下

lang

="en"

>

>

charset

="utf-8"

>

name

="viewport"

content

="width=device-width, initial-scale=1.0"

>

>

documenttitle

>

>

input

divstyle

>

head

>

>

"myform"

>

使用者名稱:type

="text"

id="t1"

value

="請輸入使用者名稱"

>

>

密碼:type

="text"

id="t2"

value

="請輸入密碼"

>

>

確認密碼:type

="text"

id="t3"

value

="請確認"

>

>

e-mail:type

="text"

id="t4"

value

="請輸入郵件位址"

>

>

出生日期:"year"

>

select

>

年 "month"

>

select

>

月 "day"

>

select

>

>

type

="submit"

value

="登陸"

>

form

>

>

function

$(elementid)

window.

onload

=function()

function

empty()

}function

year()

}function

month()

}function

day()}

function

checkall()

if(strname.length==0)

if(strname.length<

4||strname.length>16)

var passobj=$(

"t2");

var strpass=passobj.value;

if(strpass==0)

if(strpass.length<

6||strpass.length>32)

var rpassobj=$(

"t3");

var strrpass=rpassobj.value;

if(strrpass!=strpass)

var emailobj=$(

"t4");

var stremail=emailobj.value;

if(stremail.length==0)

if(stremail.

indexof

("@")==

-1&&stremail.

indexof

(".")==

-1)}

script

>

body

>

html

>

Qt 登陸介面實現

qt 登陸介面實現 新專案要用到qt,所以最近研究qt,昨天安裝好部署好qt creator現在馬上開始第乙個程式。做乙個簡單的登陸 介面功能 效果圖如下 部分 mainwindow.h include logindlg.h 主介面logindlg login 登陸介面 if login.exec ...

Qt 登陸介面實現

新專案要用到qt,所以最近研究qt,昨天安裝好部署好qt creator現在馬上開始第乙個程式。做乙個簡單的登陸介面功能 效果圖如下 部分 mainwindow.h include logindlg.h int main int argc,char argv else return0 ifndef ...

C 登陸介面

在c 中從登陸介面進入主介面,進入主介面以後怎麼關閉登陸介面 有很多方法,我就說兩種 方法一 在登入介面的登入按鈕的單擊事件下,寫 這種情況其實把主介面看作登入介面的子窗體。只是把登入介面隱藏,它還存在於記憶體中,不過一般登入介面很小,不佔多少資源,也無所謂。private void btnlogi...