function joinstep1() { var chk1 = document.getElementsByName("agreement1"); for(var i=0;iŰÄڵ尪À» ±¸ºÐÇÕ´Ï´Ù. Àú°ÍµéÀÌ ¼ýÀÚ¶ø´Ï´Ù. if(e.keyCode >= 48 && e.keyCode <= 57 || e.keyCode >= 96 && e.keyCode <= 105 || e.keyCode == 8 || e.keyCode == 46 || e.keyCode == 9) { //delete³ª backspace´Â ÀÔ·ÂÀÌ µÇ¾î¾ßµÇ´Ï±î.. if(e.keyCode == 48 || e.keyCode == 96)//0À» ´­·¶À»°æ¿ì { if(txtMileage.value == "" ) //¾Æ¹«°Íµµ ¾ø´Â»óÅ¿¡¼­ 0À» ´­·¶À»°æ¿ì e.returnValue=false; //-->ÀԷµÇÁö¾Ê´Â´Ù. else //´Ù¸¥¼ýÀÚµÚ¿¡¿À´Â 0Àº return; //-->ÀԷ½ÃŲ´Ù. } else //0ÀÌ ¾Æ´Ñ¼ýÀÚ return; //-->ÀԷ½ÃŲ´Ù. } else //¼ýÀÚ°¡ ¾Æ´Ï¸é ³ÖÀ»¼ö ¾ø´Ù. e.returnValue=false; } function calbuyprice(cid){ var buynum = cid.value; alert(buynum); } function addbuylist(select){ var money = select.options[select.selectedIndex].value; var pname = select.options[select.selectedIndex].getAttribute("pname"); var pcoupon = select.options[select.selectedIndex].getAttribute("pcoupon"); var pseq = select.options[select.selectedIndex].getAttribute("pseq"); } function setComma(nStr) { nStr += ''; x = nStr.split('.'); x1 = x[0]; x2 = x.length > 1 ? '.' + x[1] : ''; var rgx = /(\d+)(\d{3})/; while (rgx.test(x1)) { x1 = x1.replace(rgx, '$1' + ',' + '$2'); } return x1 + x2; }