$(function () {
var stop = 0;
var x = $("#fixednav").offset().top;
$(window).scroll(function () {
stop = $(this).scrolltop();
if (stop >= 1) {
$("#fixednav").addclass("fixednav");
} else {
$("#fixednav").removeclass("fixednav");
}
});
});
// 重复内容
// $('.menu>ul>li>a').each(function (i,btn) {
// var $t = $(btn);
// var $btntext = $t.html();
// var $splittext = $btntext.split("");
// $t.html("").append(""+$btntext+""+""+$btntext+"");
// })
$(function () {
$('.button').html((i, html) => {
return '' + $.trim(html).split('').join('') + '';
});
});
//导航
$(function () {
$('.menu>ul > li').hover(function () {
$(this).find('.aboutdow').slidedown(400);
$(this).find('.prodow').slidedown(400);
$(this).find('.newsdow').slidedown(400);
if($(this).find('.downav').children().length>0){
$(this).find('.navdow').slidedown(400);
}
}, function () {
$(this).find('.dowshow').stop().slideup(400);
});
// 搜索
$('.searchico .searchshow').click(function(){
$(".searchbox").addclass("searchshow");
$(".searchico").addclass("topsearch");
});
$('.searchico .searchhide').click(function(){
$(".searchbox").removeclass("searchshow");
$(".searchico").removeclass("topsearch");
});
// 返回
$(".return").click(function(){
$('body,html').animate({scrolltop:0},1500);
return false;
});
})
//提交
$(function () {
$('.submitform').on('click', function () {
var kcontent = $('.xqcontent').val();
var kuser = $('.username').val();
var kphone = $('.usertel').val();
// var kadd = $('.useradd').val();
var kcode = $('.codetext').val().trim();
// var kemail = $('.useremail').val();
var reg = /^((0\d{2,3}[-]?\d{7,8})|(1[35847]\d{9})|([48]00[-]?[016789]\d{2,3}[-]?\d{3,4}))$/;
if (kuser == "") {
alert('姓名不能为空!')
$(".username").focus();
return false;
}
if (kphone == "") {
alert('号码不能为空!')
$(".usertel").focus();
return false;
}
if(!reg.test(kphone)) {
alert('号码填写有误!')
$(".usertel").focus();
return false;
}
if (kcontent == "" || kcontent.length < 10) {
alert('留言内容必须大于10字!')
$(".xqcontent").focus();
return false;
}
if (kcode == "") {
alert('验证码不能为空')
$(".codetext").focus();
return false;
}
$.post('/api/message.ashx?action=add', {
"kcontent": '留言:' + kcontent ,
"kuser": kuser,
"kphone": kphone,
"kcode": kcode
}, function (res) {
if (res == 1) {
alert("留言提交成功");
$('.xqcontent').val('');
$('.username').val('');
$('.usertel').val('');
$('.usermail').val('');
$('.codetext').val('');
}else {
alert("留言提交失败")
}
})
})
//验证码刷新
$(".imgcode").click(function () {
$(".imgcode")[0].src = '/api/message.ashx?action=code&' + math.random()
});
//重置
$(".czform").click(function () {
$('.xqcontent').val('');
$('.username').val('');
$('.usertel').val('');
$('.codetext').val('');
});
})