这里的代码假设调用一个文件,该文件将返回返回数据以填写表格,但我收到此错误(在代码中),我不知道为什么。
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'
);
});
如果你能帮我一把,我将不胜感激:)