如何找到在浏览器中禁用 JavaScript 的用户数量?

发布于 2024-12-29 00:27:45 字数 94 浏览 0 评论 0原文

我想获取在浏览器中禁用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

看透却不说透 2025-01-05 00:27:45

您可以在服务器端安装一些东西来查看您正在服务的唯一访问者数量。

然后,将此数字与 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.

拿命拼未来 2025-01-05 00:27:45

看看雅虎的 有多少用户禁用了 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.

我最亲爱的 2025-01-05 00:27:45

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文