No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.js 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. var arrss = ["http://seo.chinaz.com/","https://beian.miit.gov.cn/"];
  2. jQuery('a').click(function(){
  3. var herfs = jQuery(this).attr('href');
  4. 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){
  5. jQuery(this).attr('target','_self');
  6. }
  7. if(herfs == '/'){
  8. jQuery(this).attr('href','index.html');
  9. }
  10. });
  11. /*$("img").on("error", function () {
  12. $(this).attr("src", "http://moban.wpmbg.com/moren.jpg");
  13. });
  14. */
  15. //创建菜单栏
  16. //document.write("<scr"+"ipt src=\"/nav.js\" charset=\"utf-8\" language=\"JavaScript\"></sc"+"ript>")
  17. $('#cl_detail .art-main table tr td:nth-child(1)').addClass('td1');
  18. $('#cl_detail .art-main table tr td:nth-child(2)').addClass('td2');
  19. $(document).on('click','.btn-show',function (){
  20. var tx = $(this).children('span').text();
  21. if(tx == '点击收起全文'){
  22. console.log('eee');
  23. $('#cl_detail .art-main').addClass('art-main-sp');
  24. $(this).children('span').text('点击查看全文');
  25. $(this).addClass('btn-bg');
  26. }else{
  27. console.log('eee');
  28. $('#cl_detail .art-main').removeClass('art-main-sp');
  29. $(this).children('span').text('点击收起全文');
  30. $(this).removeClass('btn-bg');
  31. }
  32. });