Use js to obtain information about the local computer (but only in the IE browser, which is not available in other browsers ):
Copy codeThe Code is as follows: <! DOCTYPE html PUBLIC "-// W3C // dtd xhtml 1.0 Transitional // EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<Html xmlns = "http://www.w3.org/1999/xhtml">
<Head>
<Meta http-equiv = "Content-Type" content = "text/html; charset = UTF-8"/>
<Title> ieTest </title>
<Script type = "text/javascript">
Window. onload = getusername;
Function getusername (){
// Js obtains Computer Information
Var WshNetwork = new ActiveXObject ("WScript. Network ");
Var WshShell = new ActiveXObject ("WScript. Shell ");
Var $ lDomain = document. getElementById ('ldomain '),
$ LcName = document. getElementById ('lcname '),
$ LuName = document. getElementById ('luname '),
$ LDomainDn = document. getElementById ('ldomaindn ');
$ LDomain. value = WshNetwork. UserDomain;
$ LcName. value = WshNetwork. ComputerName;
$ LuName. value = WshNetwork. UserName;
$ LDomainDn. value = WshShell. RegRead ("HKCU \ Volatile Environment \ USERDNSDOMAIN ");
WshNetwork = null;
WshShell = null;
};
</Script>
</Head>
<Body>
<Input type = 'text' id = 'ldomain 'value = ''/>
<Input type = 'text' id = 'cname' value = ''/>
<Input type = 'text' id = 'luname' value = ''/>
<Input type = 'text' id = 'ldomaindn 'value = ''/>
</Body>
</Html>