Uploadify uploadifySettings error in IE

限于喜欢 提交于 2019-12-10 11:51:51

问题


I am using the code for the uploading image using uploadify plugin, Its working fine in Firfox and safari, but not supported in IE

$("#uploadify").uploadify({
    'uploader'      :   'scripts/uploadify.swf',
    'script'        :   'scripts/upload_product.php',
    'cancelImg'     :   'images/cancel.png',
    'folder'        :   'ok',
    'queueID'       :   'fileQueue',
    'auto'          :   false,
    'fileDesc'      :   'jksdhjsdf dsjdsfbfd s',
    'fileExt'       :   '*.jpg;*.png;*.jpeg;*.gif',
    'multi'         :   false,
});

On Click on Buuton $('#uploadify').uploadifySettings('folder',inserted_prod_id); $('#uploadify').uploadifyUpload();

giving the following error in IE

Message: Object doesn't support this property or method
Line: 26
Char: 6033
Code: 0
URI: http://192.168.0.1/~/jquery.uploadify.v2.1.0.min.js

Is any solution.

Thanks Amit Battan


回答1:


'multi'         :   false,

Should be

'multi'         :   false


来源:https://stackoverflow.com/questions/3298676/uploadify-uploadifysettings-error-in-ie

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!