📄 person_jobwill.js
字号:
function theForm_check()
{
if (document.theForm.slt_selectedjobs.value=="")
{
alert("请选择你的工作岗位!");
document.theForm.slt_selectedjobs.focus();
return false;
}
if (document.theForm.slt_selectedplaces.value=="")
{
alert("请选择你的工作地区!");
document.theForm.slt_selectedplaces.focus();
return false;
}
if (document.theForm.deal.value=="")
{
alert("-请输入您的待遇要求!-");
document.theForm.deal.focus();
return false;
}
if (document.theForm.deal.value.match(/\D/))
{
alert("-待遇要求必须是数字格式!-");
document.theForm.deal.focus();
return false;
}
if (document.theForm.develop.value=="")
{
alert("-请输入您的发展方向!-");
document.theForm.develop.focus();
return false;
}
if (document.theForm.jobcontent.value=="")
{
alert("-请输入您的求职信!-");
document.theForm.jobcontent.focus();
return false;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -