我正在使用下面的腳本來顯示我的廣告。我正在使用onclick來顯示我的廣告。我嘗試以下代碼:當我點擊href鏈接時要顯示廣告
<a href="#" onclick="doalert(this); return false;" >Click here</a>
function doalert(obj) {
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- xxxxxxxxxxxx -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-xxxxxxxxxxxxx"
data-ad-slot="xxxxxxxxxxxxx"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
}
我想檢查頁面而不點擊廣告是負載。
要求 - 我點擊顯示廣告鏈接。否則沒有加載廣告。
我想你需要學習JS,以及如何使用JS插入基本的HTML。 – evolutionxbox
這可能會有所幫助:[用JavaScript動態插入Adsense](http://stackoverflow.com/questions/6197768/dynamic-adsense-insertion-with-javascript) – showdev