js前端
//删除左右两端的空格
functiontrim(str){
returnstr.replace(/(^\s*)|(\s*$)/g,"");
}
//判断中文
functionXN_CheckAllCnText(str)
{
varreg=/[\u4E00-\u9FA5]|,|。|?|!|;|:|‘|’/g
if(reg.test(str)){
returntrue;
}else{
returnfalse;
}
}
//文本框字符长度
varsername=trim(jQuery("#gys_c").val());
if(sername!=""){
varlen=0;
if(XN_CheckAllCnText(sername)){
vars=sername.replace(/[\u4E00-\u9FA5]|,|。|?|!|;|:|‘|’/g,"");
len=s.length;
}else{
len=sername.length;
}
if(len>150){
alert("查询条件长度不能超过150个字符或者75个汉字!");
returnfalse;
}
}
//jquery操作table
jQuery("#noticetr").click(function(){
jQuery("#noticetr").removeAttr("title");
jQuery(this).attr("title","on");
});
varf_effect=jQuery("#noticetr:eq("+index+")td:eq(5)").html();
varf_state=jQuery("#noticetr:eq("+index+")td:eq(4)").html();
varf_c=jQuery("#noticetr:eq("+index+")td:eq(0):checkbox");
//onkeyup
functionechChange(obb){
obb.value=obb.value.replace(/\'/g,"‘").replace(/\;/g,";").replace(/\./g,"。");
}