ie6 지원 삭제

This commit is contained in:
kit rio
2022-06-07 10:21:35 +09:00
committed by thisgun
parent 509b2c0be7
commit eba9401f89
2 changed files with 2 additions and 31 deletions

View File

@ -134,20 +134,7 @@ function no_comma(data)
function del(href)
{
if(confirm("한번 삭제한 자료는 복구할 방법이 없습니다.\n\n정말 삭제하시겠습니까?")) {
var iev = -1;
if (navigator.appName == 'Microsoft Internet Explorer') {
var ua = navigator.userAgent;
var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
if (re.exec(ua) != null)
iev = parseFloat(RegExp.$1);
}
// IE6 이하에서 한글깨짐 방지
if (iev != -1 && iev < 7) {
document.location.href = encodeURI(href);
} else {
document.location.href = href;
}
document.location.href = href;
}
}