我有一个问题,有uploadify。当使用upload.php和echo“hello”时,我收到了回复。当改为upload.cfm和hello时,我什么都没得到,没有回应。任何想法,我可以做什么来获得CF的回应。
upload.php的
<?php
echo "hello";
?>
upload.cfm
<cfoutput>hello</cfoutput>
$(document).ready(function() {
$('#newsImage').uploadify({
'uploader': '../uploadify/uploadify.swf',
'script': 'upload.cfm',
'wmode': 'transparent',
'auto': 'true',
'width': '100',
'folder': 'uploads',
'cancelImg': '../uploadify/cancel.png',
'onComplete' :
function(event, queueID, fileObj, response, data) {
if(response == "hello") {
$('#mydiv').html("hello");
}
}
});
});