📄 check.js
字号:
//<!--
function MM_openBrWindow(theURL,winName,features)
{
window.open(theURL,winName,features);
}
browserName=navigator.appName;
browserVer=parseInt(navigator.appVersion);
if ((browserName=="Netscape" && browserVer>=3) || (browserName=="Microsoft Internet Explorer" && browserVer>=4))
version="n3";
else
version="n2";
if (version=="n3")
{
pic1on = new Image();
pic1on.src = "/images/xmenu01r.gif";
pic2on = new Image();
pic2on.src = "/images/xmenu02r.gif";
pic3on = new Image();
pic3on.src = "/images/xmenu03r.gif";
pic4on = new Image();
pic4on.src = "/images/xmenu04r.gif";
pic5on = new Image();
pic5on.src = "/images/xmenu05r.gif";
pic6on = new Image();
pic6on.src = "/images/xmenu06r.gif";
pic7on = new Image();
pic7on.src = "/images/xmenu07r.gif";
pic8on = new Image();
pic8on.src = "/images/xmenu08r.gif";
pic1off = new Image();
pic1off.src = "/images/xmenu01.gif";
pic2off = new Image();
pic2off.src = "/images/xmenu02.gif";
pic3off = new Image();
pic3off.src = "/images/xmenu03.gif";
pic4off = new Image();
pic4off.src = "/images/xmenu04.gif";
pic5off = new Image();
pic5off.src = "/images/xmenu05.gif";
pic6off = new Image();
pic6off.src = "/images/xmenu06.gif";
pic7off = new Image();
pic7off.src = "/images/xmenu07.gif";
pic8off = new Image();
pic8off.src = "/images/xmenu08.gif";
}
function lightup(imgName)
{
if (version=="n3")
{
imgOn=eval(imgName + "on.src");
document[imgName].src= imgOn;
}
}
function turnoff(imgName)
{
if (version=="n3")
{
imgOff=eval(imgName + "off.src");
document[imgName].src= imgOff;
}
}
function validateForm()
{
if ((thisForm.keyword.value=="请输入关键字"))
{
alert("请选择要搜索的关键词!");
thisForm.keyword.focus();
return false;
}
}
function chkloginSubmit()
{
if (login.userid.value == "")
{
alert("请输入您的用户名");
login.userid.focus();
return false;
}
if (login.password.value == "")
{
alert("请输入您的密码");
login.password.focus();
return false;
}
return true;
}
//-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -