私はこのコードを持っています:
<body onload="detect(navigator.appName)">
<h2 id=alert>This tutorial is for Google Chrome users,
why would you want to read it?</h2>
</body>
<script>
function detect(x){
alert(x)
if (x != "Chrome"){
document.getElementById("alert").style.display = '';
}
}
</script>
問題は、 Google Chromeを使用してページを開くたびに、 「 Netscape 」が返されることです。回避策はありますか?