jq判斷是爲數字
- var reg = /^\d+$/;
- $(document).on("click","#c_all",function(){
- var result=0;
- $("input[name='classhour[]']").each(function(){
- result+=Number($(this).val());
- });
- if(!reg.test(result)){
- // if(isNaN(result)){
- alert("ID列只能輸入數字");
- return ;
- }
- $("#t_classhour").val(result);
- })
- //統計總課時
- var reg = /^\d+$/;
- $(document).on("click","#c_all",function(){
- var result=0;
- $("input[name='classhour[]']").each(function(){
- result+=Number($(this).val());
- });
- if(!reg.test(result)){
- // if(isNaN(result)){
- alert("ID列只能輸入數字");
- return ;
- }
- $("#t_classhour").val(result);
- })
歡迎關注本站公眾號,獲取更多信息