http://www.uploadify.com/
小弟初学jquery,从上面网址下的例子,然后自己写了一个index.html想测一下,结果flash按钮出来了,但是点击按钮没反应,请知道的帮忙解答一下,非常感谢!附上index.html代码:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>uploadify</title>
</head>
<body>
<link href="uploadify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript" src="jquery.uploadify.v2.1.4.min.js"></script>
<script type="text/javascript">
    $(document).ready(function() {
        $('#file_upload').uploadify({
          'uploader'  : 'uploadify.swf',
          'script'    : 'uploadify.php',
          'cancelImg' : 'cancel.png',
          'folder'    : 'uploads',
  'auto'      : true
        });
      });
 </script>
 <input id="file_upload" name="file_upload" type="file" />
</body>
</html>