为什么uploadify(jQuery插件)不起作用?我的代码出了什么问题?

时间:2010-11-22 17:11:39

标签: jquery file-upload uploadify

之前我曾经使用过这个插件,但现在当我想将它用于另一个项目时,它根本不起作用,我哪里出错了。

这是我在root index.php文件中使用的代码

<html>
<head>
<link href="/uploadify/uploadify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="/uploadify/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="/uploadify/swfobject.js"></script>
<script type="text/javascript" src="/uploadify/jquery.uploadify.v2.1.4.min.js"></script>
<script type="text/javascript">
    $(document).ready(function() {
    $('#file_upload').uploadify({
      'uploader'  : '/uploadify/uploadify.swf',
      'script'    : '/uploadify/uploadify.php',
      'cancelImg' : '/uploadify/cancel.png',
      'folder'    : '/uploads',
      'auto'      : true
    });
    });
</script>   
</head>
<body>
<input id="file_upload" name="file_upload" type="file" />
</body>
</html>

根据说明我将以下文件放在根目录的uploadify文件夹中这里是uploadify目录的屏幕截图。

alt text

我哪里错了?

如果您想查看插件的文档,请查看路径。

http://www.uploadify.com/documentation/

1 个答案:

答案 0 :(得分:2)

问题是路径前面的正斜杠。