Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简单的问题:为什么客户端脚本(例如ga.js来自 Google Analytics)以嵌入 1x1 GIF 请求中的查询参数的形式将数据发送到服务器?为什么不使用 XMLHttpRequest?
ga.js
只是为了实现跨浏览器兼容吗?还是有其他原因?
xhr 受制于同源策略,并非所有客户端都具有可靠的脚本支持。gif 信标是一种可靠的解决方案。//应该是评论