使用UPLOADIFY插件上传完成后获取上传图像的宽度

时间:2011-08-25 06:46:15

标签: javascript jquery uploadify

我希望在uploadify中完成上传后获取图片的宽度,然后在上传之前使比例与之前的比例正确

FOCUS:获取上传图片的 WIDTH

1 个答案:

答案 0 :(得分:1)

//所有文件上传完成后

'onAllComplete' : function(event,data) {
      alert("action");
    }

//文件上传时

'onComplete'  : function(event, ID, fileObj, response, data) {
      alert('There are ' + data.fileCount + ' files remaining in the queue.');
    }

尝试

$("#imgID").css("width");

$("#imgID").width()

它看起来像

$('#file_upload').uploadify({
$imgThis=$(this);
alert($imgThis.width());
'onComplete'  : function(event, ID, fileObj, response, data) {

        }
});