有没有办法用javascript检测win服务包?
我知道可以使用带有 JavaScript 的导航器对象来检索操作系统名称,但是服务包版本又如何呢?
有没有办法用纯js来做到这一点? (没有java或flash)
I know the OS name can be retrieved using the navigator object with javascript, but what about the service pack version?
Is there a way to do this with pure js? (without java or flash)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 http://msdn.microsoft.com/ en-us/library/ms537503(v=vs.85).aspx
它是 SV1,因为 SP2 也是安全版本 1。因此您可以执行以下操作:
...确定 SV1 是否包含在用户代理字符串中。我无法找到是否有任何与 SP1 关联的令牌。
According to http://msdn.microsoft.com/en-us/library/ms537503(v=vs.85).aspx
It's SV1 because SP2 is also Security Version 1. So you could do:
...to detemine if SV1 is contained within the user agent string. I wasn't able to find if there's any token associated with SP1.