只需一处js文件
KS_Inc/form_ck.js
function form_c(){
var str="";
$(".formstrck").each(function(index, element) {
var s_arr=$(this).attr("id").split("|%|");
var obj=$("#"+s_arr[1]);
if(s_arr[2]==1||s_arr[2]==2||s_arr[2]==10||s_arr[2]==9){
if (obj.val()==""){
if(s_arr[2]==9){
$.dialog.alert("请上传"+s_arr[0]+"!",function(){$(obj).focus();});
}else{
$.dialog.alert("请输入"+s_arr[0]+"!",function(){$(obj).focus();});
}
str="n";
}
if (ismobile(document.myform.KS_tel.value)==false) {
$.dialog.alert("您的手机号码不正确!",function(){document.myform.KS_tel.focus();});
str = "n";
}
}
});
if(str=="n"){
return false;
}
}
其他操作:
1、手机号字段名为“KS_Phone”,或者将js里的“KS_Phone”修改成你的字段名
2、手机号字段设置为必填