>웹 프론트엔드 >JS 튜토리얼 >JS를 사용하여 IE 업로드 파일 경로를 얻는 방법(IE7,8)_javascript 기술

JS를 사용하여 IE 업로드 파일 경로를 얻는 방법(IE7,8)_javascript 기술

WBOY
WBOY원래의
2016-05-16 17:29:371544검색
코드 복사 코드는 다음과 같습니다.

function verifyFileSize(id, maxsize) {
var btnsave = document .getElementById("Button2");             btnsave.disabled = false; fileupload.value.length < ; 5) { Alert('파일을 선택하세요!') }
          return; .userAgent;
                                               Msie 7.0 ')!
var isIe8 = agent.indexof (' msie 8.0 ')! 🎜> // IE7 및 IE8은 파일 경로를 가져옵니다
if (ISIE7 || ISIE8) { Fileupload.select ();
Filepath = Document.selection.createrange ().
}> // IE6 파일 경로 가져오기
Else
{filepath = file.value; }
//PageMethods.ValidateFile(filepath, maxsize, ieCallBack);
Alert(filepath);
}
if (agent.indexOf( "Firefox") > ;= 1) {
           경고("FF");                    경고(getValue());              var size = fileupload.files[0].fileSize ;
                     > ';
         Alert("파일이 크기를 초과했습니다! " ); }

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.