onClick()
足し算または引き算のデータベースに1つずつ足し算または引き算 したいButton
。
私のコード
$.ajax({
type:'POST',
dataType: 'json',
url:'storage.php',
data:{search: $("#s_inven").val()},
success:function(rows){
for (var i = 0, len = rows.length; i < len; i++) {
$('#inven').append('<tr><td>'+ rows[i].G_Name +'</td><td>'+
'<button data-icon="plus" data-iconpos="notext" id="'+
rows[i].Id + 'plus" value="'+ rows[i].Id + '">+</button>' +
'</td><td>'+ '<label id="">'+ rows[i].quant +'</label></td><td>'+
'<button data-icon="minus" data-iconpos="notext" id="'+
rows[i].G_Name +'minus" value="'+ rows[i].G_Name +
'">-</button>' +'</td></tr>'
}
);
ユーザーが[追加 ]をクリックするButton
と、をに更新
rows[i].quant
しrows[i].quant+1
ます。