javascript/HTML實現多個text控制項自動/動態計算總數

來源:互聯網
上載者:User

<html>
<head>
<title>untitled</title>
<style type="text/css">

input {width: 40px;}

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

function autocalc(e)
{
var field, val,total=0,i=0;
for (i; i< arguments.length; ++i) //loop through text elements
{
field = arguments[i];
val = parseFloat(field.value); //get value
if (!isNaN(val)) //number?
{
total += val; //accumulate
}

}
e.form.total.value = total; //out
}

function EnsureDecimal(e)
{
      if (((event.keyCode < 48) || (event.keyCode > 57)) && (event.keyCode != 46))
      {                  
         event.returnValue = false;
      }
      else if((e.value.indexOf('.')!=-1) && event.keyCode==46)
      {
        event.returnValue = false;
      }
       
}

</script>
</head>
<body onload="document.forms[0].reset()">
<form>
<table cellspacing="8">
<tr>
<td>value 1:<input name="text1" type="text" OnKeyPress="EnsureDecimal(this)" onkeyup="return autocalc(this,text2,text3)" tabindex="1"></td>
<td rowspan="3"><strong>total:</strong><input name="total" type="text" readonly="readonly" value="0" tabindex="-1"></td>
</tr><tr>
<td>value 2:<input name="text2" type="text" OnKeyPress="EnsureDecimal(this)" onkeyup="return autocalc(this,text1,text3)" tabindex="2"></td>
</tr><tr>
<td>value 3:<input name="text3" type="text" OnKeyPress="EnsureDecimal(this)" onkeyup="return autocalc(this,text1,text2)" tabindex="3"></td>
</tr>
</table>
</form>
</body>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.