모든 텍스트박스의 수 더하기. text sum
페이지 정보
본문
<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이 되겠다.
- 이전글같은 폼에서 동일한 값 입력하기. 21.02.10
- 다음글새창 띄워서 작업 후 부모창 리로드(reload) 21.02.10
댓글목록
등록된 댓글이 없습니다.