我需要禁用,而該文件上傳提交按鈕..Uploadify檢查進度
<button type="submit" id="submit_button" class="btn btn-default">Odeslat</button>
JS:
$('#file_upload').uploadify({
'swf' : 'css/uploadify.swf',
'uploader' : 'uploadify.php?galerie=<?php echo $n; ?>',
'onUploadProgress' : function(file) {
$('#submit_button').prop('disabled', true);
}
});
但這不是工作..
編輯
相關CT解決方案:
$('#file_upload').uploadify({
'swf': 'css/uploadify.swf',
'uploader' : 'uploadify.php?galerie=<?php echo $n; ?>',
'onUploadProgress' : function(file) {
$('#submit_button').attr('disabled', 'disabled');
},
'onUploadComplete': function(file) {
$('#submit_button').removeAttr("disabled");
}
});
是否使用jQuery用戶界面?如果是這樣,可能是該按鈕實際上被禁用,它看起來不像是可見的。 – bingo