0

这里的代码假设调用一个文件,该文件将返回返回数据以填写表格,但我收到此错误(在代码中),我不知道为什么。

dropdown.bind('change', function(){
    $post.('backgroundScript.php', 
Uncaught SyntaxError: Unexpected token ( - this is the error im getting
        { 
            first: dropdown.val() 
        },
        function(response) {
            $('#first').val(response.first);
            $('#last').val(response.last);
            // Repeat for all of your form fields
        },
        'json'
    );
});

如果你能帮我一把,我将不胜感激:)

4

2 回答 2

3

放在 。在发布之前而不是之后,感谢 Mihai Stancu 发现它。

dropdown.bind('change', function(){
    $.post('backgroundScript.php', 
        { 
            first: dropdown.val() 
        },
        function(response) {
            $('#first').val(response.first);
            $('#last').val(response.last);
            // Repeat for all of your form fields
        },
        'json'
    );
});
于 2012-08-07T06:20:36.113 回答
0

尝试使用"$.post(而不是$post.(

于 2012-08-07T06:24:16.320 回答