写个计算器,没有思路,大哥们帮帮忙!!!
我是利用class给所有的按钮添加点击事件呢还是根据ID一个个添加,如何用class给所有按钮添加,那么后面该怎么办!
<!--第一排-->
<input type="button" id="7" value="7" class="buttons"/>
<input type="button" id="8" value="8" class="buttons"/>
<input type="button" id="9" value="9" class="buttons"/>
<input type="button" id="Back" value="Back" class="buttons"/>
<input type="button" id="C" value="C" class="buttons" style="margin-right:0px"/>
<!--第二排-->
<input type="button" id="4" value="4" class="buttons"/>
<input type="button" id="5" value="5" class="buttons"/>
<input type="button" id="6" value="6" class="buttons"/>
<input type="button" id="*" value="x" class="buttons"/>
<input type="button" id="/" value="/" class="buttons" style="margin-right:0px"/>
<!--第三排-->
<input type="button" id="1" value="1" class="buttons"/>
<input type="button" id="2" value="2" class="buttons"/>
<input type="button" id="3" value="3" class="buttons"/>
<input type="button" id="+" value="+" class="buttons"/>
<input type="button" id="-" value="-" class="buttons" style="margin-right:0px"/>
<!--第四排-->
<input type="button" id="0" value="0" class="buttons"/>
<input type="button" id="00" value="00" class="buttons"/>
<input type="button" id="." value="." class="buttons"/>
<input type="button" id="%" value="%" class="buttons"/>
<input type="button" id="eva" value="=" class="buttons" style="margin-right:0px"/>
class加呀
有其余的特殊键,你判断一下this.value处理一下就行了