uploadify - 来自coldfusion的回复

时间:2010-09-18 15:23:21

标签: coldfusion response uploadify

我有一个问题,有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");
   }

     }

}); 
}); 

1 个答案:

答案 0 :(得分:0)

看看这个link

非常有用,您可以进行多重上传。问候