js 图片预览

时间:2024-06-27 16:34:08

图片预览

    $('#pac_recipe').change(function() {
var imgsrc = '';
if(this.files && this.files[]) { //chrome firefox
imgsrc = window.URL.createObjectURL(this.files[]);
} else {
//IE下,使用滤镜
this.select();
imgsrc = document.selection.createRange().text;
} });