$(function () { // 事件 $(".zx_btm_o").click(function () { $(this).prev().toggleClass("zx_right"); }); // 返回顶部 $('.p_backtop').removeClass("zx_hi"); $(window).scroll(function () { if ($(this).scrollTop() > 100) { $('.p_backtop').addClass("zx_hi"); } else { $('.p_backtop').removeClass("zx_hi"); } }); let llhei = $(document.body).height(); $('.p_backtop').click(function () { $('html ,body').animate({ scrollTop: 0 }, 300); return false; }); $('.p_backbottom').click(function () { $('html ,body').animate({ scrollTop: llhei }, 300); return false; }); // 添加类名 $(".zx_type").each(function () { var ttt = $(this).text(); $(this).parent().addClass("zx_" + ttt) }); // QQ补充信息 $(".zx_1").find(".zx_zh").prepend("

客服QQ

") // 阿里旺旺补充信息 $(".zx_2").find(".zx_zh").prepend("

阿里旺旺

") // 阿里旺旺E客服补充信息 $(".zx_3").find(".zx_zh").prepend("

阿里旺旺E客服

") // Skype补充信息 $(".zx_4").find(".zx_zh").prepend("

Skype在线客服

") // WhatsApp补充信息 $(".zx_5").find(".zx_zh").prepend("

WhatsApp在线客服

") // 微信补充信息 $(".zx_6").find(".zx_zh").prepend("

扫一扫微信二维码
关注我们动态

") $(".zx_6").find(".s_img").prepend("

微信二维码

") // 邮箱补充信息 $(".zx_8").find(".zx_zh").prepend("

我们的邮箱

") // 电话号码补充信息 $(".zx_9").find(".zx_zh").prepend("

点击拨打客服电话

") });