【原创】购买商品数量加减(含特大加粗加减符号)

<html>
<form>
<input type=text name=amount value=1>
<input type=button value="+" onClick="javascript:this.form.amount.value++;">
<input type=button value="-" onClick="javascript:if(this.form.amount.value>1) this.form.amount.value--;">
</form>
</html>

你可以直接复制    ➕(加粗的加号)   ➖ (加粗的减号)

原文地址:https://www.cnblogs.com/apolloren/p/9191123.html