<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> </body> <script> document.write('瀏覽器代碼名字:'+navigator.appCodeName+'<br/>'); document.write('瀏覽器名稱:'+navigator.appName+'<br/>'); document.write('瀏覽器版本:'+navigator.appVersion+'<br/>'); document.write('瀏覽器編譯平臺:'+navigator.platform+'<br/>'); document.write('瀏覽器語言:'+navigator.language+'<br/>'); document.write('瀏覽器用戶的表頭信息:'+navigator.userAgent+'<br/>'); info = navigator.userAgent; //alert(info); ch = info.search(/Chrome/); ff = info.search(/Firefox/); ie = info.search(/MSIE/); if(ch !=-1){ document.body.style.backgroundColor="green"; } if(ff !=-1){ document.body.style.backgroundColor="pink"; } if( ie !=-1){ document.body.style.backgroundColor="yellow"; } </script> </html>
點擊 "運行實例" 按鈕查看在線實例
微信掃碼
關(guān)注PHP中文網(wǎng)服務(wù)號
QQ掃碼
加入技術(shù)交流群
Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號