checklogin.js
来自「AspEase Auction System Ver2.0/动易拍卖系统 Ver」· JavaScript 代码 · 共 19 行
JS
19 行
<!--
function checklogin(theform)
{
if (theform.aspeasename.value=="")
{
alert("请输入用户名!");
theform.aspeasename.focus();
return (false);
}
if (theform.aspeasepass.value=="")
{
alert("请输入密码!");
theform.aspeasepass.focus();
return (false);
}
return (true);
}
-->
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?