我想通过JavaScript获取跨浏览器的操作系统用户名。我一直在尝试不同的解决方案,但没有一个真正起作用。我实际上并不想根据我的要求安装第三方插件,我无法做到。
到目前为止,我在浏览解决方案时上网了
var wshshell = new ActiveXObject("wscript.shell");
var username = wshshell.ExpandEnvironmentStrings("%username%");
alert(username);
答案 0 :(得分:0)
对不起,这是不可能的。网页无法访问OS(操作系统),因为这会带来安全问题。
您找到的代码仅在IE中有效,并且当用户将页面设置为最低安全级别时(您不能依靠它)。