问题
I want to get the computer name using jquery. I tried using ActiveX Object but it will only run on IE browser. Is there is another way to get the computer name using jquery. I tried that code.
var network = new ActiveXObject('WScript.Network');
alert(network.computerName);
Can u any one help me..
回答1:
You can't. This information is not available to web sites.
The ActiveX approach outlined in your question won't even work in current versions of Internet Explorer, as the WScript.Network
ActiveX object is not marked as safe for scripting.
回答2:
Is there is another way to get the computer name
You can utilize NativeMessaging
to achieve requirement at Firefox and Chromium, Chrome.
来源:https://stackoverflow.com/questions/46658359/get-the-computer-name-using-javascript-jquery