解決 uploadify 點選瀏覽 沒有反應的問題
阿新 • • 發佈:2019-02-05
沒反應 就我知道有3種情況
1)swf路徑不對
2)width 寬度沒設定
3)dialog 對話方塊不相容(改用IFrame)
例子
$('#add_file').uploadify({ 'auto' : false, 'debug' : true, //debug 'swf' : 'js/uploadify.swf', 'fileSizeLimit' : "4096KB",大小限制 //'multi': true, 'buttonClass' : 'ui-button ui-widget ui-state-default ui-corner-all', 'width': '100%',//buttonImg的大小 //'height': 30,// 'formData' : { /// 連同file一同post 'id' : 1 }, 'uploader' : 'upload.php', //'removeCompleted' : false, 'buttonText' : '瀏覽檔案,不要超過4M', 'onError' : function(event,ID,fileObj,data) { $.alert('The upload of ' + fileObj.name + 'Size:'+fileObj.size + ' has been canceled!'); $('#add_file').uploadify('cancel'); }, 'onUploadSuccess' : function (file,data,response) { //$("#add_new").dialog( "close" ); //var i = Math.random(); alert(data); } });