这里的代码假设调用一个文件,该文件将返回数据以填写表单,但我收到此错误(在代码中),我不知道为什么。
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'
);
});
你会帮我一把,我会很感激:)
答案 0 :(得分: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'
);
});
答案 1 :(得分:0)
尝试使用"$.post(
代替$post.(