我一直在尝试使用ajax将点击事件链接到php函数,使用php中的按钮。但是,当我点击按钮时,绝对没有任何反应。我不知道为什么。
这是我的PHP代码
$(document).ready(function () {
$('#aeps').click(function () {
var printpayslips = $(this).val();
$_ajax({
type: 'POST',
url: '../print.php';
dataType: 'json',
data: {
printslip: printpayslips
},
success: function (response) {
console.log(response);
}
})
})
$('#ps').click(function () {
var paysum = $(this).val();
$_ajax({
type: 'POST',
url: 'print.php';
dataType: 'json',
data: {
printsum: paysum
},
success: function (response) {
console.log(response);
}
})
}) $('#create').click(function () {
var cr = $(this).val();
$_ajax({
type: 'POST',
url: 'print.php';
dataType: 'json',
data: {
create: cr
},
success: function (response) {
console.log(response);
}
})
})
})
答案 0 :(得分:2)
使用Chrome运行代码很有帮助,因为开发人员控制台会告诉您代码的死亡位置。
有些注意事项:
除非您编写了一个名为$_ajax
的特定ajax函数,否则jQuery的ajax函数为$.ajax
。此外,您编写的每个url:
行都以分号结尾,其中应以逗号结尾。