※ 引述《cathy19 (cathy)》之銘言:
: 最近小女子需要開發一個用php設計的會計費用平台,但在加總欄位text時無法加總
: (o_total),
: 請問該如何用java script呢?
: function sum(value)
: {
: document.getElementById("o_total").value=parseInt(document.getElementById("o_total").value)
: + parseInt(value);
: <input name="o_dollar1" type="text" id="o_dollar1" onchange="sum(this.value)"
: size="10" />
: <input name="o_dollar2" type="text" id="o_dollar2" onchange="sum(this.value)"
: size="10" />
: 請問上以程式在哪寫錯,拜託各位了?pls~
下列是我把你的東西 copy過來實驗,我執行沒有太大問題,你再自行比對看看吧!
<SCRIPT TYPE="TEXT/JAVASCRIPT">
function sum(value)
{
document.getElementById("o_total").value=parseInt(document.getElementById("o_total").value)+ parseInt(value);
}
</SCRIPT>
<input name="o_dollar1" type="text" id="o_dollar1" onchange="sum(this.value)" size="10" />
<input name="o_dollar2" type="text" id="o_dollar2" onchange="sum(this.value)" size="10" />
<input name="o_total" type="text" id="o_total" size="10" />