跟踪远程站点上的用户活动
我正在开发可用性测试服务,并试图弄清楚如何在另一个域的页面上跟踪用户活动(例如网址、点击等)(无需通过 JS 修改页面或类似的)。
有什么想法吗?
I'm working on a usability testing service and trying to figure out how to track user activity (e.g. url, clicks etc.) on a page of another domain (without modifying the page via JS or similar).
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您必须通过浏览器以某种方式修改页面才能完成您需要的大部分操作。也许是 Firefox 扩展,或者在 WebKit/Gecko 控件上连接事件(如果可用)。
或者,您可能能够通过
和一些JavaScript监控点击来破解一些东西。不过,我不确定如何将点击传递到 iframe。
但除此之外,我认为这是不可能的——而且可能有充分的理由!这将是一个相当大的安全漏洞。
I think you'd have to modify the page in some way through the browser to do most of the stuff you need. Perhaps a Firefox extension, or hooking up events (if they are available) on WebKit/Gecko controls.
Or, you might be able to hack something together with an
<iframe>
and some JavaScript monitoring for clicks. I'm not sure how you could pass the clicks on to the iframe, though.But other than that, I don't think it's possible - and probably for good reason! It'd be quite a big security hole.