0
我想用coldfusion的uploadify,我遇到的問題是我的迴應。 我的upload2.cfm文件簡直就是你好。所以我理論上應該在我的#newsImageHolder div中獲得'hello'。我所得到的是當前頁面的整個html。uploadify回覆coldfsuion
感謝您的任何幫助。
R.
<script>
$(document).ready(function() {
$('#newsImage').uploadify({
'uploader': '../uploadify/uploadify.swf',
'script': 'upload2.cfm',
'wmode': 'transparent',
'auto': 'true',
'width': '100',
'folder': '/',
'cancelImg': 'cancel.png',
'onComplete' :
function(event, queueID, fileObj, response, data) {
$('div#newsImageHolder').html(response);
}
});
});
</script>
此腳本是否應該與uploadify swf或索引頁相關? – Roscoeh 2010-09-17 09:06:06