当我点击href链接时想要显示我的广告

时间:2015-03-20 11:56:20

标签: javascript jquery html

您好我使用以下脚本来显示我的广告

<a href="<?php the_permalink() ?>" onclick="func()" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a>

我正在使用onclick来显示我的广告

<script>
function func()
{
  window.open("xxxxx.html", '_blank');
  return false;
}

这是我的功能

xxxxx.html是

    <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>

它只打开广告窗口,但我想打开xxxxx.html(即)脚本中使用的链接,如上所示

1 个答案:

答案 0 :(得分:0)

希望我确实做得很好:不要使用return false path继续导航。

HTML:

<a id="your_anchor" href="<?php the_permalink() ?>"  title="nothing" rel="bookmark">Click Here</a>

JS:

document.getElementById("your_anchor").addEventListener("click", function ()
{
  window.open("http://www.yoursite/xxxxx.html", '_blank'); 

}

新窗口打开,用户继续导航到?php the_permalink()?页面,例如:http://jsfiddle.net/041ammg4/