码迷,mamicode.com
首页 > Web开发 > 详细

js 图片预览

时间:2014-09-22 00:45:21      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   ar   div   sp   cti   

图片预览

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

 

js 图片预览

标签:style   blog   color   io   使用   ar   div   sp   cti   

原文地址:http://www.cnblogs.com/the-moving-ear/p/3985145.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!