0

Chrome 告诉我,我的 SWFUpload 设置中没有冒号。

$(document).ready(function() {
    var swfu;
    var settings = function() {
        flash_url: 'swfupload.swf',
        upload_url: 'uploadtest.php', //this is the line
        file_post_name: 'file',
        file_size_limit: '10 MB',

        button_image_url: 'styles/images/browse2.png',
        button_width: 232,
        button_height: 84,
        button_placeholder_id: 'swfbutton'
    };
    swfu = new SWFUpload(settings);
});

截图:http: //imgdiode.com/BI2QNY

通常,当缺少前一个项目或类似的东西时,我会看到这样的语法错误,但我似乎无法弄清楚问题出在哪里。也许我想多了,但我没有看到任何问题。

4

1 回答 1

1

试试这个方法

var settings = { ...

http://jsfiddle.net/u5LLQ/

于 2012-07-17T06:04:16.760 回答