捕获 onclick adsense 事件?
如果用户点击 adsense ,我不想发送 ajax 请求。 但是因为 adsense 代码位于 iframe 中,所以我找不到捕获 onclick 事件的方法..有什么想法吗??
I wan't to send an ajax request if the user clicked on adsense .
But because adsense code is in iframe I can't find a way to catch the onclick event .. any ideas plz ??!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单的答案是你不能。由于 adsense 可能位于另一个域上,因此对 iframe 内部的大多数访问都被切断。这是所有现代浏览器中内置的跨域安全功能。您也许能够捕获 iframe 上的点击事件(之前没有亲自尝试过),但它不会告诉您有关 iframe 内部的任何信息。
The simple answer is that you can't. Since adsense is likely on another domain, most access to the inside of the iframe is cut off. This is a cross-domain security feature built into all modern browsers. You may be able to catch the click event on the iframe (haven't personally tried before), but it's not going to tell you anything about the inside of the iframe.