12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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>")
-
-
- $('#cl_detail .art-main table tr td:nth-child(1)').addClass('td1');
- $('#cl_detail .art-main table tr td:nth-child(2)').addClass('td2');
-
- $(document).on('click','.btn-show',function (){
- var tx = $(this).children('span').text();
- if(tx == '点击收起全文'){
- console.log('eee');
- $('#cl_detail .art-main').addClass('art-main-sp');
- $(this).children('span').text('点击查看全文');
- $(this).addClass('btn-bg');
- }else{
- console.log('eee');
- $('#cl_detail .art-main').removeClass('art-main-sp');
- $(this).children('span').text('点击收起全文');
- $(this).removeClass('btn-bg');
- }
-
- });
|