如何从iframe /脚本获取href并重定向到它

时间:2017-01-06 13:11:10

标签: html redirect iframe href banner

我在我的服务器上运行了广告服务器,我创建了HTML可点击横幅,它需要href目标链接来重定向某个地方。

问题是iframe链接是动态的,可能随时更改。我想要的是从iframe获取href并重定向到它。

<a href="LINK OF BELOW IFRAME" target="_blank"> <img src="http://example.com/banners/front.jpg" style="width:728px; height:90px ; position: absolute; z-index:2;opacity: 0.0"></a>
  

以下代码来自公司并显示横幅本身

<script type="text/javascript">document.write("<iframe name='banner' src='https://target.com/scripts/banner.php?a_aid=586b827a9f74f&a_bid=a6c90d0d&w=1&refx2s6d="+encodeURIComponent(encodeURIComponent(document.URL))+"' framespacing='0' frameborder='no' scrolling='no' width='728' height='90' allowtransparency='true'><a href='https://target.com/scripts/click.php?a_aid=586b827a9f74f&amp;a_bid=a6c90d0d' target='_top'>728x90 (GIF)</a></iframe>");
</script>
<noscript>
<h2><a href="https://target.com/index.php?visitorId={$visitorid}&accountId=81c19f03&utm_source=loangate&utm_medium=affiliate&utm_campaign=loangate">728x90 (GIF)</a></h2>
</noscript>

提供的代码是一个HTML代码,而不是单独的代码。

另请注意,这并不清楚iframe。它是包含iframe本身的脚本。

所以我制作了可点击的html,可以点击重定向。但是如何从iframe获得href给我公司?

0 个答案:

没有答案