duansao20000508 2015-08-20 08:44
浏览 91
已采纳

生成3个随机的ad.innerHTML HTML代码

I have a script below and I want to modify row 19 to show 3 different predefined html tags. Can someone show me how to do that?

Thanks.

<script> 

  // Run after all the page elements have loaded
  window.onload = function(){ 

    // This will take care of asynchronous Google ads
    setTimeout(function() { 

      // We are targeting the first banner ad of AdSense
      var ad = document.querySelector("ins.adsbygoogle");

      // If the ad contains no innerHTML, ad blockers are at work
      if (ad && ad.innerHTML.replace(/\s/g, "").length == 0) {

        // Since ad blocks hide ads using CSS too
        ad.style.cssText = 'display:block !important'; 

        // You can put any text, image or even IFRAME tags here
        ad.innerHTML = 'Your custom HTML messages goes here';      
      }

    }, 2000); // The ad blocker check is performed 2 seconds after the page load 
  }; 

</script>
  • 写回答

1条回答 默认 最新

  • duanla3319 2015-08-21 05:17
    关注

    I got the answer!

        <script>          
          // Run after all the page elements have loaded
          window.onload = function(){         
            // This will take care of asynchronous Google ads
            setTimeout(function() {               
              // We are targeting the first banner ad of AdSense
              var ad = document.querySelector("ins.adsbygoogle");             
              // If the ad contains no innerHTML, ad blockers are at work
              if (ad && ad.innerHTML.replace(/\s/g, "").length == 0) {              
                // Since ad blocks hide ads using CSS too
                ad.style.cssText = 'display:block !important';  
                //Add variables
                var Ads = ["Ads 1", "Ads 2", "Ads 3"];
                var displayAds = Ads[Math.floor(Math.random() *Ads.length)]; 
                // You can put any text, image or even IFRAME tags here
                ad.innerHTML = displayAds;            
              }           
            }, 2000); // The ad blocker check is performed 2 seconds after the page load 
          };          
        </script>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥30 python代码,帮调试,帮帮忙吧