$(document).ready(function(){ $(".not_cls").hover( function(){ $(this).addclass("cls_active"); $(this).siblings().removeclass("cls_active"); $(this).children(".not_tit").show().parent().siblings(".not_cls").children(".not_tit").hide(); },function(){ return false; }); $(".ncls_tit1").click(function(){ $t1_index = $(this).index(); $(this).addclass("ncls_tit11"); $(".ncls_tit2").removeclass("ncls_tit22"); $(".ncls_tit3").removeclass("ncls_tit33"); $(this).children(".news_tit").show().parent().siblings().children(".news_tit").hide(); }); $(".ncls_tit2").click(function(){ $t2_index = $(this).index(); $(this).addclass("ncls_tit22"); $(".ncls_tit1").removeclass("ncls_tit11"); $(".ncls_tit3").removeclass("ncls_tit33"); $(this).children(".news_tit").show().parent().siblings().children(".news_tit").hide(); }); $(".ncls_tit3").click(function(){ $t3_index = $(this).index(); $(this).addclass("ncls_tit33"); $(".ncls_tit1").removeclass("ncls_tit11"); $(".ncls_tit2").removeclass("ncls_tit22"); $(this).children(".news_tit").show().parent().siblings().children(".news_tit").hide(); }); $("#sub_bt").click(function(){ //alert(0); $("#mesg").submit(); }); $("#mesg").submit(function(){ var tit = $("input[name='mes_title']").val(); var name = $("input[name='mes_name']").val(); var phon = $("input[name='mes_phone']").val(); var mail = $("input[name='mes_mail']").val(); var cont = $("#mescont").val(); if (tit == "") { alert("标题不能为空!"); return false; } if (name == "") { alert("姓名不能为空!"); return false; } if (mail == "" && phon == "") { alert("联系方式至少要填一个哦!"); return false } if(mail != ""){ if (!mail.match(/^([a-za-z0-9_-])+@([a-za-z0-9_-])+((\.[a-za-z0-9_-]{2,3}){1,2})$/)) { alert("请输入有效的邮箱!"); return false; } } if (phon != "") { var myreg = /^(((13[0-9]{1})|(15[0-9]{1})|(18[0-9]{1}))+\d{8})$/; if(!phon.match(myreg)) { alert('请输入有效的手机号码!'); return false; } } if (cont == "") { alert("请先输入内容后在提交!"); return false; } }); });