HTML 代码
<button id="btn1">show item no. 1</button>
<button id="btn2">show item no.2</button>
<div id="resulttext"></div>
JavaScript 代码
price1=20;
price2=50;
qty1=0;
qty2=0;
amount=0;
$(document).ready(function(){
$('#btn1').click(function(){
qty1=qty1 + 1;
amount=price1*qty1;
$("resultqty").change(qty1);
$("resultprice").change(amount);
$("#resulttext").append("<div><button type='button' id='remove1' class='close pull-right' aria-hidden='true'>×</button>REGULAR BURGER" + "<p> Quantity:"+qty1+"</p><p> Unit Total:"+amount+"</div>");
})
})
$(document).on('click', 'button#remove1', function(){
$(this).parent().remove();
});
$(document).ready(function(){
$('#btn2').click(function(){
qty2=qty2 + 1;
amount=price2*qty2;
$("resultqty").change(qty2);
$("resultprice").change(amount);
$("#resulttext").append("<div><button type='button' id='remove2' class='close pull-right' aria-hidden='true'>×</button>SPECIAL BURGER"+ "<p> Quantity:"+qty2+"</p><p> Unit Total:"+amount+"</div>");
})
})
$(document).on('click', 'button#remove2', function(){
$(this).parent().remove();
});
上面的代码实际上是有效的,但我的主要问题是,当我单击特定按钮时,必须附加的文本应该只出现一次,但数量和数量仍应实时更改,因为您连续单击同一个按钮.
另一件事是,我想获得两个按钮的总和并将其显示在页面上。