[javascript] 각각 브라우저 및 플렛폼 체크
로빈아빠
본문
navigator.userAgent.indexOf("Opera") != -1
navigator.userAgent.indexOf("Safari") != -1
navigator.platform.indexOf("Mac") != -1
navigator.userAgent.indexOf("Firefox") != -1
navigator.appVersion.indexOf("MSIE 8")
navigator.platform.indexOf("Linux") != -1
navigator.userAgent.indexOf("MSIE 5.5") != -1
navigator.appVersion.indexOf("MSIE")
navigator.userAgent.toLowerCase().indexOf("gecko") != -1;
navigator.userAgent.indexOf("Safari") != -1
navigator.platform.indexOf("Mac") != -1
navigator.userAgent.indexOf("Firefox") != -1
navigator.appVersion.indexOf("MSIE 8")
navigator.platform.indexOf("Linux") != -1
navigator.userAgent.indexOf("MSIE 5.5") != -1
navigator.appVersion.indexOf("MSIE")
navigator.userAgent.toLowerCase().indexOf("gecko") != -1;
var browser=navigator.appName;
var version=navigator.appVersion;
if (version.indexOf("MSIE 5.0") > -1 )
{
// IE 5.0 인 경우
window.open(url,"vr","width="+width+", height="+height+", toolbar=no, scrollbars=no, top=0, left=0");
}
else if (version.indexOf("MSIE 5.1") > -1 )
{
// IE 5.1 인 경우
window.open(url,"vr","width="+width+", height="+height+", toolbar=no, scrollbars=no, top=0, left=0");
}
else if (version.indexOf("MSIE 5.5") > -1 )
{
// IE 5.5 인 경우
window.open(url,"vr","width="+width+", height="+height+", toolbar=no, scrollbars=no, top=0, left=0");
}
else if (version.indexOf("MSIE 6.0") > -1 )
{
// IE 6.0 인 경우
window.open(url,"vr","width="+width+", height="+height+", toolbar=no, scrollbars=no, top=0, left=0");
}
else if (version.indexOf("MSIE 7.0") > -1 )
{
// IE 7.0 인 경우
window.open(url,"vr","fullscreen");
}
else if (version.indexOf("MSIE 8.0") > -1 )
{
// IE 8.0 인 경우
window.open(url,"vr","fullscreen");
}
else
{
// 기타
window.open(url,"vr","fullscreen");
}
관련링크
댓글목록
등록된 댓글이 없습니다.