如何使用我的网站收集系统硬件信息
我希望能够收集以下信息:
- 笔记本电脑/PC 类型:品牌或型号?
- 操作系统类型以及 CPU 和 RAM 数量 ?
- 如果使用特殊键盘,那么型号是什么。
有没有办法使用 JavaScript 或任何可以在浏览器中运行的脚本来执行此操作? (Chrome 和 Firefox 不是 IE)。
I want to be able to collect information like :
- Type of Laptop/PC : Make or Model ?
- Type of OS along with CPU and RAM
amount ? - If a special keyboard is being used then what is the model.
Is there any way to do this using JavaScript or any script that I can run in a browser?
(Chrome and Firefox not IE).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Javascript
navigator
对象,您可以获得操作系统和浏览器版本(但这很容易被许多浏览器欺骗)。不幸的是,对于更深入的事情,您将需要运行客户端的东西。Using the Javascript
navigator
object you can get an OS and browser version (this can be easily spoofed by a lot of browsers though). Unfortunately for anything more in depth you will need something running client side.