我有以下代码:
$('#postTrx').click(function(){
var hargaBrg = $("tbody").find("tr").eq(i).find("td").eq(3).text();
var id = $("tbody").find("tr").eq(i).find("td").eq(0).text();
var jumlah = $("tbody").find("tr").eq(i).find("td").eq(4).text();
$.ajax({
type : "post",
url : "input_pembelian.php",
data: "{'idBeliBarang':" + id + ",'harga':'" + hargaBrg + "','jumlah':'" + jumlah + "}",
});
});
如何从AJAX访问jQuery变量?
答案 0 :(得分:0)
我尝试使用以下代码,并且响应已完成,但没有数据插入数据库,我检查查询是否正确:
$('#postTrx').click(function(){
var hargaBrg = $("tbody").find("tr").eq(1).find("td").eq(1).text();
var id = $("tbody").find("tr").eq(1).find("td").eq(0).text();
var jumlah = $("tbody").find("tr").eq(1).find("td").eq(2).text();
$.ajax({
type : "post",
url : "input_pembelian.php",
data: "{'idBeliBarang':" + id + ",'harga':'" + hargaBrg + "','jumlah':'" + jumlah + "}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function () {
alert("complete");
},
error: function (err) {
alert(err);
}
});
});