如何找到在浏览器中禁用 JavaScript 的用户数量?
我想获取在浏览器中禁用 JavaScript 的用户数量。由于谷歌分析代码在 JS 上运行,所以我没有得到任何非 JS 用户的计数
是否有任何工具或任何网站?
I want to get a count of number of user has disable javascript in browser. as google analytics code run on JS so i am not getting any count of nonJS user
Is there any tool or any site ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在服务器端安装一些东西来查看您正在服务的唯一访问者数量。
然后,将此数字与 Google Analytics(分析)数字进行比较,看看其中有多少人禁用了 JavaScript。
You can install something server-side to see how many unique visitors you are serving to.
Then you compare this number to the Google Analytics numbers to see how many of them have JavaScript disabled.
看看雅虎的 有多少用户禁用了 JavaScript?,其中记录了一种方法。
基本上,您可以拥有一个
标记,并在该标记中添加某种计数器(例如图像,或者更好的在线非 JavaScript 计数器服务)。它只会被未运行的浏览器加载(访问)。然而,计算图像点击量(在您的访问日志中)将为您提供禁用 JS 的点击量,而不是唯一访问者 — 如果您使用在线非 JavaScript 计数器服务,这可能会为您提供唯一访问者。
Have a look at Yahoo's How many users have JavaScript disabled?, which documents a methodology.
Basically you can have a
<noscript>
tag, and some kind of counter in that tag (e.g. an image, or better an online non-JavaScript counter service). It will only be loaded (accessed) for the browsers which are not running browsers. However counting the image hits (in your access log) will give you hits with JS disabled, rather than unique visitors—if you use an online non-JavaScript counter service, this is likely to give you unique visitors.Google 提供以下解决方案:PHP、JSP、ASP.NET 和 Perl。
https://developers.google.com/analytics/devguides/collection/other/mobileWebsites
所有解决方案都会生成
标记。
提供了源代码,因此您可以移植到任何其他语言。
Google provides solutions for: PHP, JSP, ASP.NET, and Perl.
https://developers.google.com/analytics/devguides/collection/other/mobileWebsites
All solutions generate
<img>
tag.Source code is provided, so you can port to any other language.