这是代码。在这里,我想在post方法中使用ajax传递商品ID,库存数量和价格。如果有人可以帮助我真的很棒。感谢inadvance
function update_item(item_id, sellingPrice,stockQty){
// alert (sellingPrice);
var item = item_id;
var sellingPrice = sellingPrice;
var stockQty = stockQty;
//var temp = "#"+item_id;
//var temp1 = "'"+temp+"'";
alert ("hii");
$.ajax({
url : 'UpdateItem2.php',
method : 'POST',
data : {"item=" : item + "sellingPrice=" : sellingPrice + "stockQty=" : stockQty},
alert (item);
success : function($result){
alert("Stock upated successfully");
}
});
}
</script>
答案 0 :(得分:1)
在对象声明中有一个alert(),它不起作用。您还需要将数据对象的每个元素分开,如下所示:
data: {"foo": "bar", "bar": "foo"}