js實現(xiàn)模擬計算器退格鍵刪除文字效果的方法
來源:易賢網(wǎng) 閱讀:3301 次 日期:2015-05-11 14:40:45
溫馨提示:易賢網(wǎng)小編為您整理了“js實現(xiàn)模擬計算器退格鍵刪除文字效果的方法”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了js實現(xiàn)模擬計算器退格鍵刪除文字效果的方法,涉及javascript字符串截取操作的相關技巧,需要的朋友可以參考下

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"">

<html xmlns="">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>無標題文檔</title>

<style type="text/css">

.myinput{

width:70px; height:30px;

}

.tf{

width:220px; height:30px;

margin-bottom:5px; font-size:26px;

font-family:Tahoma, Geneva, sans-serif;

color:#fff; border:2px solid #999;

background:#000; text-align:right;

}

</style>

<script language="javascript" type="text/javascript">

window.onload = function()

{

var tf = $("tf");

for( var i=0;i<11;i++ ){

$("btn"+i).onclick = function(){

if(this.value == "." && tf.value == "") return false;

if(this.value == "." && tf.value.indexOf(".") != -1) return false;

if(tf.value == "0"){

if(this.value == "."){

tf.value += this.value;

}

}else{

tf.value += this.value;

}

}

}

$("back").onclick = function(){

tf.value = tf.value.replace(/.$/,'')

}

}

function $(id){return document.getElementById(id);}

</script>

</head>

<body>

<input class="tf" name="textfield" type="text" id="tf" size="30" />

<br />

<input class="myinput" type="submit" name="button" id="btn0" value="0" />

<input class="myinput" type="submit" name="button" id="btn1" value="1" />

<input class="myinput" type="submit" name="button" id="btn2" value="2" />

<br />

<input class="myinput" type="submit" name="button" id="btn3" value="3" />

<input class="myinput" type="submit" name="button" id="btn4" value="4" />

<input class="myinput" type="submit" name="button" id="btn5" value="5" />

<br />

<input class="myinput" type="submit" name="button" id="btn6" value="6" />

<input class="myinput" type="submit" name="button" id="btn7" value="7" />

<input class="myinput" type="submit" name="button" id="btn8" value="8" />

<br />

<input class="myinput" type="submit" name="button" id="btn9" value="9" />

<input class="myinput" type="submit" name="button" id="btn10" value="." />

<input class="myinput" type="submit" name="button" id="back" value="退格" />

</body>

</html>

希望本文所述對大家的javascript程序設計有所幫助。

更多信息請查看IT技術專欄

更多信息請查看腳本欄目
易賢網(wǎng)手機網(wǎng)站地址:js實現(xiàn)模擬計算器退格鍵刪除文字效果的方法

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權所有:易賢網(wǎng)