모든 텍스트박스의 수 더하기. text sum
페이지 정보
작성자 최고관리자 작성일 21-02-10 17:24 조회 6,810 댓글 0본문
<script language=\"javascript\">
function change(){
var ch_total = 0;
var Cnt = 0;
Cnt = Cnt + $count;
for (count=0; count < Cnt;count++){
var sub_money = eval(\"document.signform.l_uid\"+ count);
var sum_money = sub_money.value;
ch_total = parseInt(ch_total) + parseInt(sum_money);
}
document.signform.sum_total.value = ch_total;
}
</script>
************************************
더할 텍스트박스의 이름이 l_uid0,l_uid1,l_uid2..... 이런식으로 임의의 갯수만큼($count) 있다.
위 소스는 PHP소스이므로 $count와 count는 각각 PHP변수와 자바변수로 서로 다른 값이다. 즉 count가 $count만큼 더하게 되어 있다.
더한 값이 들어가는 박스이름은 sum_total이 되겠다.
function change(){
var ch_total = 0;
var Cnt = 0;
Cnt = Cnt + $count;
for (count=0; count < Cnt;count++){
var sub_money = eval(\"document.signform.l_uid\"+ count);
var sum_money = sub_money.value;
ch_total = parseInt(ch_total) + parseInt(sum_money);
}
document.signform.sum_total.value = ch_total;
}
</script>
************************************
더할 텍스트박스의 이름이 l_uid0,l_uid1,l_uid2..... 이런식으로 임의의 갯수만큼($count) 있다.
위 소스는 PHP소스이므로 $count와 count는 각각 PHP변수와 자바변수로 서로 다른 값이다. 즉 count가 $count만큼 더하게 되어 있다.
더한 값이 들어가는 박스이름은 sum_total이 되겠다.
댓글목록 0
등록된 댓글이 없습니다.