这段代码无法正常工作,你看到任何缺陷吗?
$('#button').click(function(){
$.ajax({
type: 'POST',
url: 'action.php'
}
});
});
在此先感谢您的帮助
你有一个无与伦比的}
$('#button').click(function(){
$.ajax({
type: 'POST',
url: 'action.php'
// } <--- Not necessary
});
});
这更容易:
$('#button').click(function(){
$.post("test.php");
});
将其更改为:
$('#button').click(function(){
$.ajax({
type: 'POST',
url: 'action.php'
});
});
请注意,您有一个额外的}