사진 업로드 탐색
11804 단어 사진 업로드
<title> </title>
<input type="file" id="fileElem" multiple accept="image/*" onchange="handleFiles(this)">
<div id="fileList" style="width:200px;height:200px;"></div>
<script>
window.URL = window.URL || window.webkitURL;
var fileElem = document.getElementById("fileElem"),
fileList = document.getElementById("fileList");
function handleFiles(obj) {
var files = obj.files,
img = new Image();
if(window.URL){
//File API
alert(files[0].name + "," + files[0].size + " bytes");
img.src = window.URL.createObjectURL(files[0]); // object URL,
img.width = 200;
img.onload = function(e) {
window.URL.revokeObjectURL(this.src); // , object URL
}
fileList.appendChild(img);
}else if(window.FileReader){
//opera createObjectURL/revokeObjectURL 。 FileReader
var reader = new FileReader();
reader.readAsDataURL(files[0]);
reader.onload = function(e){
alert(files[0].name + "," +e.total + " bytes");
img.src = this.result;
img.width = 200;
fileList.appendChild(img);
}
}else{
//ie
obj.select();
obj.blur();
var nfile = document.selection.createRange().text;
document.selection.empty();
img.src = nfile;
img.width = 200;
img.onload=function(){
alert(nfile+","+img.fileSize + " bytes");
}
fileList.appendChild(img);
//fileList.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='image',src='"+nfile+"')";
}
}
</script>
코드는 다른 사람의 것이다: http://www.codefans.net/jscss/code/4325.shtml
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PHP 환경에서 Fckeditor 편집기 업로드 이미지 구성 상세 튜토리얼Fckeditor 사진 업로드 기능 켜기 PHP 버전 Fckeditor 업로드 기능은 chomod 함수로 새 디렉터리에 대한 권한 설정을 해야 하기 때문에 Fckeditor 업로드 기능을 사용할 때 PHP 환경의 사...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.