?? verify_client.js
字號:
<!--
function UserEnter()
{
if(window.document.fm.operator_name.value.length<1){
alert("請您填寫用戶名!");
document.fm.operator_name.focus();
return;}
if(window.document.fm.operator_pwd.value.length<1){
alert("請您填寫密碼!");
document.fm.operator_pwd.focus();
return;}
if (document.fm.operator_name.value.indexOf("<")!=-1 || document.fm.operator_name.value.indexOf(">")!=-1){
alert("用戶名中不能包含 (<,>) ");
document.fm.operator_name.focus();
return ;
}
if (document.fm.operator_name.value.indexOf("'")!=-1){
alert("用戶名中不能包含 (') ");
document.fm.operator_name.focus();
return ;
}
window.document.fm.submit();
return true;
}
function window_onload()
{
window.document.fm.screenwidth.value=window.screen.width;
window.document.fm.operator_name.focus();
}
function name_next(code)
{
var charcode=(navigator.appName=="Netscape")?code.which:code.keyCode;
if(charcode==13)
{
window.document.fm.operator_pwd.focus();
}
}
function pwd_next(code)
{
var charcode=(navigator.appName=="Netscape")?code.which:code.keyCode;
if(charcode==13)
{
UserEnter();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -