수수료계산

· 19년 전 · 2235
<script language='JavaScript'>
/// VAT 계산 하기 //////////
//////////////////////// 문자열 치환 //////////////////////
function replace(str,sstr,rstr) { // 문자열 치환
return String(str).replace(new RegExp(sstr,"ig"),rstr);
}
//////////////////////// 문자열 치환 //////////////////////

//////////// 실시간 콤마 /////////////////////
function tagin_net_comma(tagin_net_str) {
var t_align = "right"; // 텍스트 필드 정렬
var t_num = tagin_net_str.value.substring(0,1); // 첫글자 확인 변수
var num = /^[/,/,0,1,2,3,4,5,6,7,8,9,/]/; // 숫자와 , 만 가능
var tagin_netValue = "";
var tagin_netValue2 = "";

if (!num.test(tagin_net_str.value)) {
alert('숫자만 입력하십시오.nn특수문자와 한글/영문은 사용할수 없습니다.');
tagin_net_str.value="";
tagin_net_str.focus();
return false;
}

if ((t_num < "0" || "9" < t_num)){
alert("숫자만 입력하십시오.");
tagin_net_str.value="";
tagin_net_str.focus();
return false;
}

for(i=0; i<tagin_net_str.value.length; i++) {
if(tagin_net_str.value.charAt(tagin_net_str.value.length - i -1) != ",") {
tagin_netValue2 = tagin_net_str.value.charAt(tagin_net_str.value.length - i -1) + tagin_netValue2;
}
}

for(i=0; i<tagin_netValue2.length; i++) {

if(i > 0 && (i%3)==0) {
tagin_netValue = tagin_netValue2.charAt(tagin_netValue2.length - i -1) + "," + tagin_netValue;
} else {
tagin_netValue = tagin_netValue2.charAt(tagin_netValue2.length - i -1) + tagin_netValue;
}
}

tagin_net_str.value = tagin_netValue;
tagin_net_str.style.textAlign = t_align;
}
//////////// 실시간 콤마 /////////////////////

///////////////// 콤마 나누는 부분 ////////////////
function commaSplit(srcNumber) {
var txtNumber = '' + srcNumber;
var rxSplit = new RegExp('([0-9])([0-9][0-9][0-9][,.])');
var arrNumber = txtNumber.split('.');
arrNumber[0] += '.';
do {
arrNumber[0] = arrNumber[0].replace(rxSplit, '$1,$2');
}
while (rxSplit.test(arrNumber[0]));
if (arrNumber.length > 1) {
return arrNumber.join('');
}
else {
return arrNumber[0].split('.')[0];
}
}
///////////////// 콤마 나누는 부분 ////////////////

function tagin_net_vat(){
var f = document.tagin_netform;
var tagin_net_vat_rate = (f.tagin_net_rate.value/100);
var tagin_net_money = replace(f.tagin_net_money.value,',','');
var tagin_net_vat_money= (tagin_net_money * tagin_net_vat_rate);
var tagin_net_vat_money_plus = (tagin_net_vat_money - (tagin_net_money * -1));
f.tagin_net_vat_money.value = commaSplit(parseInt(tagin_net_vat_money));
f.tagin_net_vat_money_plus.value = commaSplit(parseInt(tagin_net_vat_money_plus));
}
</script>
<form name="tagin_netform">
<table border="0" bgcolor="#CCCCCC" cellpadding="5" cellspacing="1" align="center">
<tr align="center" bgcolor="white"><td colspan="2">VAT 계산 하기</td></tr>
<tr align="center" bgcolor="white">
<td>금액</td><td align="left"><input type="text" size="15" name="tagin_net_money" value=""onKeyUp="tagin_net_comma(this);tagin_net_vat()"> 원</td>
</tr>
<tr align="center" bgcolor="white">
<td>VAT 요율</td><td align="left"><input type="text" size="15" name="tagin_net_rate" value="10" onFocus="this.select()" onKeyUp="tagin_net_vat()" style="text-align:right;"> %</td>
</tr>
<tr align="center" bgcolor="white">
<td>VAT 금액</td><td align="left"><input type="text" size="15" name="tagin_net_vat_money" value="" onFocus="this.blur()" readonly style="text-align:right;"> 원</td>
</tr>
<tr align="center" bgcolor="white">
<td>VAT 포함 금액</td><td align="left"><input type="text" size="15" name="tagin_net_vat_money_plus" value="" onFocus="this.blur()" readonly style="text-align:right;"> 원</td>
</tr>
</table>
</form><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]</div>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
19년 전 조회 2,214
19년 전 조회 3,386
19년 전 조회 2,459
19년 전 조회 2,138
19년 전 조회 1,842
19년 전 조회 2,295
19년 전 조회 3,566
19년 전 조회 3,427
19년 전 조회 2,132
19년 전 조회 1,688
19년 전 조회 3,372
19년 전 조회 2,245
19년 전 조회 1,820
19년 전 조회 3,043
19년 전 조회 2,169
19년 전 조회 2,046
19년 전 조회 2,021
19년 전 조회 1,982
19년 전 조회 2,409
19년 전 조회 2,835
19년 전 조회 1,980
19년 전 조회 1,727
19년 전 조회 1,728
19년 전 조회 1,686
19년 전 조회 3,416
19년 전 조회 3,106
19년 전 조회 1,856
19년 전 조회 3,613
19년 전 조회 2,034
19년 전 조회 1,676
19년 전 조회 2,149
19년 전 조회 2,299
19년 전 조회 1,855
19년 전 조회 2,536
19년 전 조회 2,187
19년 전 조회 1,792
19년 전 조회 1,986
19년 전 조회 2,249
19년 전 조회 2,010
19년 전 조회 1,799
19년 전 조회 1,852
19년 전 조회 3,349
19년 전 조회 2,204
19년 전 조회 2,068
19년 전 조회 4,561
19년 전 조회 5,184
19년 전 조회 3,356
19년 전 조회 3,089
19년 전 조회 3,696
19년 전 조회 2,236
19년 전 조회 2,593
19년 전 조회 2,892
19년 전 조회 2,961
19년 전 조회 2,555
19년 전 조회 1,824
19년 전 조회 3,613
19년 전 조회 2,180
19년 전 조회 2,586
19년 전 조회 2,654
19년 전 조회 3,080
19년 전 조회 5,410
19년 전 조회 2,686
19년 전 조회 3,519
19년 전 조회 4,457
19년 전 조회 2,721
19년 전 조회 2,656
19년 전 조회 4,251
19년 전 조회 2,948
19년 전 조회 3,184
19년 전 조회 2,408
19년 전 조회 2,407
19년 전 조회 2,197
19년 전 조회 3,495
19년 전 조회 2,307
19년 전 조회 2,993
19년 전 조회 1,941
19년 전 조회 5,500
19년 전 조회 3,768
19년 전 조회 4,515
19년 전 조회 3,263
19년 전 조회 2,726
19년 전 조회 4,120
19년 전 조회 2,841
19년 전 조회 3,187
19년 전 조회 3,159
19년 전 조회 4,371
19년 전 조회 3,321
19년 전 조회 3,211
19년 전 조회 3,901
19년 전 조회 3,186
19년 전 조회 2,419
19년 전 조회 2,427
19년 전 조회 2,366
19년 전 조회 2,989
19년 전 조회 2,691
19년 전 조회 3,534
19년 전 조회 3,406
19년 전 조회 2,015
19년 전 조회 2,950
19년 전 조회 8,030