2012-02-05 127 views
-5

我有一個6個輸入字段的表單,收集部門銷售數據準備添加到SQL2008數據庫。javascript或jquery添加輸入字段

我正在尋找一個腳本,它將輸入所有字段,以便在提交數據之前可以檢查總數。

+9

[你嘗試過什麼(http://mattgemmell.com/2008/12/08/what-have-you-tried/ ) 至今?你的代碼遇到了什麼困難?現在你聽起來更像是一家商店裏的顧客,而不是一個在社區論壇上尋求同行開發者幫助的軟件開發者。我擔心,如果你不顯示你的努力,你的問題將很快關閉。 – 2012-02-05 10:50:57

回答

5

好吧,無論如何這個問題值得回答。

這裏完全是working code;

P.S.使用MVVM模式

+0

http://meta.stackexchange.com/questions/118392/add-stack-overfow-faq-entry-or-similar-forputing-code-in-the-question – 2012-02-05 11:00:19

+0

謝謝Oybek,那很完美。看起來我用這個問題的簡單性使這裏的一些人不高興。 – 2012-02-05 11:02:27

+2

@達倫庫克 - 這不是問題的簡單性,而是你沒有爲你展示任何努力的事實。如果您發佈了一些顯示您的嘗試的代碼,並詢問它出了什麼問題,而不是要求提供完整的解決方案,那麼您就不會得到現在的響應。 – 2012-02-05 11:07:02

1

這是一個JSFiddle,顯示如何保持運行計數。

HTML:

<input type="text" class="include-in-sum" id="1"> 
<br/> 
<input type="text" class="include-in-sum" id="2"> 
<br/> 
<input type="text" class="include-in-sum" id="3"> 
<br/> 
Total: <span id="total" /> 

的Jquery:

$(document).ready(function() { 
    var grandTotal = 0; 
    $(".include-in-sum").blur(function() { 
     grandTotal = 0; 

     $(".include-in-sum").each(function(index, item) { 
      var t = parseInt($(item).val()); 
      if (!isNaN(t)) { 
       grandTotal += t; 
      } 
     }); 

     $("#total").text(grandTotal); 
    }); 
}); 
相關問題