jQuery 操作后刷新广告?
*仅供参考:我没有使用 Adsense,这并不违反我的 TOS...
我有显示 jQuery 幻灯片的页面。我曾经在 html 中创建幻灯片,因此每次幻灯片更改都将是一个综合浏览量。现在我正在使用 Javascript 进行幻灯片放映,我只需为观看的每张幻灯片注册一次广告展示。我想找到一种方法,让读者每次点击查看下一张幻灯片时刷新我的广告。关于如何实现这一目标有什么建议吗?
*FYI: I'm not using Adsense and this is not against my TOS...
I have pages that display jQuery slideshows. I used to create the slideshows in html and so every slide change would be a pageview. Now that I'm using Javascript for the slideshow I am only registering one ad impression for every slide viewed. I'd like to find a way to have my ads refreshed every time the reader clicks to view the next slide. Any suggestions on how to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这实际上取决于您如何从广告网络加载广告。但是,您可以将广告代码放在单独的文件中,然后在每次幻灯片更改时执行以下操作:
$("#adspace").load('adfile.html');
这将是一种在每次幻灯片更改时更新广告的好用的通用方法。
This really depends on how you load your ad off of the ad network. But, you could put the ad code in a separate file and then do something like this each time the slide changes:
$("#adspace").load('adfile.html');
This would be a nice, generic, way of updating the ad each time the slide changes.