如何触发页面上div单元的刷新(给出示例)
该页面是幻灯片放映,用户可以按“下一个”/“上一个”按钮或使用右/左箭头键浏览幻灯片。每次用户进行导航时,右侧边栏上的广告单元都会刷新。知道如何实现这一点吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
广告显示在
iframe
中(因此它不是简单的div
,在这种情况下,您必须使用 Ajax 重新加载内容)。在导航按钮的事件处理程序中,您只需重新加载此
iframe
即可。您可以使用
location.reload()
:或将
src
设置为其当前值:The advertisement is displayed in an
iframe
(so it is not a simplediv
, 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()
:or setting the
src
to its current value: