如何触发页面上div单元的刷新(给出示例)

发布于 2024-12-09 14:31:33 字数 386 浏览 1 评论 0原文

我正在查看此链接:http://www.businessinsider.com/the-worlds-weirdest-etfs-that-you-can-trade-today-2011-10#market-vectors-gaming-etf-nyse-bjk- 1

该页面是幻灯片放映,用户可以按“下一个”/“上一个”按钮或使用右/左箭头键浏览幻灯片。每次用户进行导航时,右侧边栏上的广告单元都会刷新。知道如何实现这一点吗?

I am checking out this link : http://www.businessinsider.com/the-worlds-weirdest-etfs-that-you-can-trade-today-2011-10#market-vectors-gaming-etf-nyse-bjk-1

The page is a slideshow where the user can either press the Next/Previous button or use the right/left arrow keys to navigate through the slideshow. Everytime the user does a navigation, the ad unit on the right sidebar does a refresh. Any idea how this can be effected?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

星軌x 2024-12-16 14:31:33

广告显示在 iframe 中(因此它不是简单的 div,在这种情况下,您必须使用 Ajax 重新加载内容)。

在导航按钮的事件处理程序中,您只需重新加载此 iframe 即可。

您可以使用 location.reload()

document.getElementById('myiframe').reload(true);
/*"true" means the URL should not be reloaded from cache*/

或将 src 设置为其当前值:

var myIframe=document.getElementById('myiframe');
myIframe.src=myIframe.src;

The advertisement is displayed in an iframe (so it is not a simple div, in which case you would have to reload content using Ajax).

In the event handler for the navigation buttons, you simply have to reload this iframe.

You can either do this by using location.reload():

document.getElementById('myiframe').reload(true);
/*"true" means the URL should not be reloaded from cache*/

or setting the src to its current value:

var myIframe=document.getElementById('myiframe');
myIframe.src=myIframe.src;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文