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');
- }
- });
-
-
-
-
|