if (window.status !== window.statusVal) { $(".v3footer_zhaoban").click(function(){ var url = "http://www.zhinengdayi.com"; window.open(url); }); $(".footer_msg_left01 ul li a").each(function(){ $(this).click(function(){ var url = $(this).attr("hrefLink"); window.open(url); }) }) } // 获取二维码的宽度 //var speed = 40; window.onload=function (){ var codeWidth = $(".footer_msg_right01 img.mobile_code_footer_right").width(); // 获取友情链接的宽度 var linkWidth = $(".footer_msg_left01").outerWidth(); // 获取 联系方式的宽度 var contactWidth = $(".footer_msg_center01").outerWidth(); // 联系方式偏移的宽度 var tWidth = (1200 - codeWidth - linkWidth - contactWidth) / 2; $(".footer_msg_center01").css("left", tWidth + codeWidth + "px"); // 学校总访问量 接口 if('0' != 1) { $.ajax({ type: "get", url: getApiServer() + "/front/info/queryTotalViewNum/"+sCode, success: function (data) { var viewTimes = data.data; if(viewTimes){ $(".v3footer_copyright_msg01 .total_view").html("总访问量: " + viewTimes + "次"); }else { } } }) } };