?? main.js
字號:
//--------------------------------------------------
//暫沒用到
function movefocus(){
if(window.event.keyCode==13)
{
fullwin();
}
}
//--------------------------------------------------
function fullwin(){
if (FormWelcome.userid.value=="")
{
alert("用戶名不能為空!");
document.FormWelcome.userid.focus();
document.FormWelcome.userid.select();
return false;
}
else
{
if (FormWelcome.pswd.value=="")
{
alert("密碼不能為空!");
document.FormWelcome.pswd.focus();
document.FormWelcome.pswd.select();
return false;
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -