2013-02-01 61 views
0
<div name="googleAd"> 
<script type="text/javascript"> 
      google_ad_client = "ca-pub-xxxxxxxxxxxxx"; 
      <!--/* BottomRight */--> 
      google_ad_slot = "1781127922"; 
      google_ad_width = 180; 
      google_ad_height = 150; 
      </script> 

      <script name="test" type="text/javascript" 
       src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> 
      </script> 
</div> 

我將谷歌的AdSense添加到我的網頁,我想重新整理才能看到另一個廣告。我怎樣才能做到這一點?我使用xslt。謝謝您的幫助。如何刷新谷歌的AdSense內容?

+0

複製的http://stackoverflow.com/questions/4260018/google-adsense-reloading和http://stackoverflow.com/questions/435391/refresh-a-div-that-has-a-google-ad - 內部-IT/435432#435432 – 2013-02-04 03:28:51

回答

0

如果您檢查頁面與它的Adsense廣告的DOM,你會看到一個iframe。你可以找到iframe,然後重新加載它

iframe.contentWindow.location.reload(); 

你可能必須調整的東西,以使其工作完全正確。