我只是从各个网站抓取了这些代码,并自行推出以完成以下操作。
我想检测一个IE浏览器,并且只想提醒会员一旦完成他们的会话。我该怎么做呢?以下是我正在使用的代码。
<SCRIPT language="JavaScript">
<!--
var once_per_session=1
function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { // if cookie exists
offset += search.length
// set index of beginning of value
end = document.cookie.indexOf(";", offset);
// set index of end of cookie value
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}
function alertornot(){
if (get_cookie('alerted')==''){
loadalert(alert)
document.cookie="alerted=yes"
}
}
function loadalert(){
var browserName=navigator.appName;
if (browserName=="Microsoft Internet Explorer")
{
alert("Our Web Panel best viewed in Google Chrome and Firefox 3+ You may still continue but some features may not work properly..");
}
}
if (once_per_session==0)
loadalert()
else
alertornot()
//-->
</SCRIPT>
通过检测浏览器,这是否真的可以提醒一次?请帮忙。
答案 0 :(得分:1)
您可以使用Conditional comments of IE。浏览器的userAgent不可靠。
#1:
<!--[if IE]>
You are using IE (IE5+ and above).
<![endif]-->
#2:
<![if !IE]>
You are NOT using IE.
<![endif]>
或者,你可以使用这个技巧
var ie = !-[1,];
alert(ie);
我更喜欢Conditional comments
解决方案,您可以选择其中一个