私の広告を表示するには、以下のスクリプトを使用しています。私は広告を表示するために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の挿入](0120-17753) – showdev