您好,登錄后才能下訂單哦!
請求超時(shí)!
這篇文章主要介紹javascript實(shí)現(xiàn)計(jì)算器的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
具體內(nèi)容如下
1、先構(gòu)思整個(gè)計(jì)算器的模式以及想要實(shí)現(xiàn)的功能,按模塊創(chuàng)建相應(yīng)的div,在“head”中設(shè)置其樣式和布局。2、用“input”標(biāo)簽創(chuàng)建text類型,置為輸出框;依次創(chuàng)建buttom類型,置為按鈕,內(nèi)容為1、2、3……;創(chuàng)建“=”,并在input中對(duì)他進(jìn)行點(diǎn)擊事件“οnclick=”result()””.3、添加script,利用var定義class里面的值,并賦值給一個(gè)新的變量,4、編寫for循環(huán)語句,執(zhí)行代碼內(nèi)容5、最后添加result函數(shù),執(zhí)行結(jié)果。
源代碼如下(自行設(shè)置style的值):
<body><div class="contour"> <div class="screen"> <input class="text" type="text" value=''οnfοcus="this.blur();"> </div> <div class="click"> <div> <input class="bt t" type="button" value="1"> <input class="bt t" type="button" value='2'> <input class="bt t" type="button" value='3'> <input class="bt t" type="button" value='+'> </div> <div> <input class="bt t" type="button" value='4'> <input class="bt t" type="button" value='5'> <input class="bt t" type="button" value='6'> <input class="bt t" type="button" value='-'> </div> <div> <input class="bt t" type="button" value='7'> <input class="bt t" type="button" value='8'> <input class="bt t" type="button" value='9'> <input class="bt t" type="button" value='*'> </div> <div> <input class="bt t" type="button" value='#'> <input class="bt t" type="button" value='0'> <input id="result" class="t" type="button" value='=' onclick="result()"> <input class="bt t" type="button" value='/'> </div> </div> </div> <script> var btnArr = document.getElementsByClassName("bt"); // var result=document.getElementById("result"); var text = document.getElementsByClassName("text")[0]; // console.log(btnArr) // 用js給某一個(gè)元素添加click事件 // btnArr[0].οnclick=function(){ // alert() // } // for循環(huán)添加click事件 // input的value指的是 input的值 var showNum='' //alert(btnArr[1].value); for(var i=0;i<btnArr.length;i++){ btnArr[i].οnclick=function(){ showNum =showNum+this.value; text.value = showNum; } } function result(){ text.value=eval(showNum) } </script> </body>
以上是“javascript實(shí)現(xiàn)計(jì)算器的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。
億速云公眾號(hào)
手機(jī)網(wǎng)站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權(quán)所有
廣州億速云計(jì)算有限公司粵ICP備17096448號(hào)-1 粵公網(wǎng)安備 44010402001142號(hào)增值電信業(yè)務(wù)經(jīng)營許可證編號(hào):B1-20181529