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.
由于 webfont 发行商的许可基于页面浏览量,AJAX 请求 ( .load()) 会产生影响吗?
.load()
例子:
$('#read').load('index.php #read'); // update #read div $('#watch').load('index.php #watch'); // update #watch div
不,因为整个页面不会再次加载。我不认为字体生产者关心 ajax 范式。
一般来说,没有。
一个 ajax 页面请求获取一串信息(通常是 html/xml/json)。出于 webfont 服务的目的,它正在跟踪对 webfont 本身的请求。每当浏览器处理带有对 webfont 本身的请求的标签时,这就是记录的请求。
当然,除非 ajax 请求是专门针对 webfont 的,或者是注入请求 webfont 的元素。那么是的,这将是该字体的页面视图。