1234567891011121314151617181920 |
- var arrss = ["http://seo.chinaz.com/","https://beian.miit.gov.cn/"];
- jQuery('a').click(function(){
- var herfs = jQuery(this).attr('href');
- if(herfs.indexOf('http://www') < 0 && herfs.indexOf('https://www') < 0 && herfs.indexOf('weibo.com/') < 0 && herfs.indexOf('wpa.qq.com/') < 0 && jQuery.inArray(herfs, arrss) == -1){
- jQuery(this).attr('target','_self');
- }
- if(herfs == '/'){
- jQuery(this).attr('href','index.html');
- }
- });
-
- /*$("img").on("error", function () {
-
- $(this).attr("src", "http://moban.wpmbg.com/moren.jpg");
-
- });
- */
-
- //创建菜单栏
- //document.write("<scr"+"ipt src=\"/nav.js\" charset=\"utf-8\" language=\"JavaScript\"></sc"+"ript>")
|