1. 程式人生 > >用js如何獲取UA(user Agent)使用者代理?

用js如何獲取UA(user Agent)使用者代理?

<!DOCtype html>  
<html>  
<head>  
<title></title>  
</head>  
<body onload="whatBrowser()">  
<script>   
function whatBrowser() {    
document.Browser.Name.value=navigator.appName;    
document.Browser.Version.value=navigator.appVersion;    
document.Browser.Code.value=navigator.appCodeName;    
document.Browser.Agent.value=navigator.userAgent;    
}    
</script>   
<table>   
<form name="Browser">   
<tr>   
<td> 瀏覽器名稱: </td>   
<td> <input type="txt" name="Name" size="110%"></td>   
</tr>   
<tr>   
<td> 版本號:</td>   
<td> <input type="txt" name="Version" size="110%"></td>   
</tr>   
<tr>   
<td> 程式碼名稱: </td>   
<td> <input type="txt" name="Code" size="110%"></td>   
</tr>   
<tr>   
<td> 使用者代理標識:</td>   
<td> <input type="txt" name="Agent" size="110%"></td>   
</tr>   
</form>   
</table>   
</body>  
</html>