我們並不總是要加稅訂購,所以我需要一種方式,稅收將被默認忽略,除非指定。乘以稅收和增加總金額
所以我有下面的文本框:
<input class="txt1" type="text" name="subtotal" value="" id="subtotal"
size="16" tabindex="42" onChange="enableBeforeUnload();"
onKeyUp="enableBeforeUnload();">
我有這樣的文本框中正常工作,它求和值。
我有我試圖通過稅收百分比相乘並顯示共有兩個文本框:
<input class="txt1" type="text" name="tax" id="tax" value="1" size="16" tabindex="42"
onChange="enableBeforeUnload();" onKeyUp="enableBeforeUnload();">
<input class="txt2" type="text" name="total1" value="" id="total1" size="16"
tabindex="42" onChange="enableBeforeUnload();" onKeyUp="enableBeforeUnload();">
我嘗試使用沒有運氣以下:
var tax = +$("#tax").val(), // get tax and convert to a number
total = tax ? sum * tax : sum; // if tax is a non-zero number multiply
// otherwise just take the sum as is
這:
totAmt.val(sum + sum*parseFloat(taxAmt.val()/100));
我無法正確實施。 在此先感謝。
http://jsfiddle.net/thetylercox/jh2Ne/7/我庫侖dnot得到這個工作,正確 http://soldbybillcox.com/treasure/demo.php其工作在這裏很好
的JS小提琴你已經鏈接,既沒有在與您的稅務計算方法似乎沒有做此刻什麼... - 是這樣嗎? – anotherdave 2012-07-18 17:34:42
進出口新的JS撥弄我有工作在我的網站我只是想出來http://soldbybillcox.com/treasure/demo.php @anotherdave – 2012-07-18 17:47:05