IE 브 라 우 저가 파일 을 업로드 할 때 로 컬 경로 가 "C: \ fakepath \" 로 변 하 는 문제

882 단어 Path
	//        2          
	var isIE = (document.all) ? true : false; 3         
	var isIE7 = isIE && (navigator.userAgent.indexOf('MSIE 7.0') != -1);          
	var isIE8 = isIE && (navigator.userAgent.indexOf('MSIE 8.0') != -1);         
	var isIE6 = isIE && (navigator.userAgent.indexOf('MSIE 6.0') != -1);         
	var file = document.getElementById("uploadFile");  
	var path = null;
	if (isIE7 || isIE8) { 
		file.select();//                       
		path = document.selection.createRange().text;            
		document.selection.empty();
	} 
	var filepath = document.getElementById("uploadFile").value;
	if (isIE6) {
		path = filepath; 
	}
	
	alert("--------------------"+path);

좋은 웹페이지 즐겨찾기