function __numberOnly(e) { var t=$(e.target).val(); var r=t.replace(/[^0-9]/g,""); $(e.target).val(r); } function commonAlert(msg) { $("#btn_modal_common_alert_ok").unbind("click"); if(arguments[1]) { $("#btn_modal_common_alert_ok").bind("click",arguments[1]); } $("#modal_common_alert_text").html(msg); $("#modal_common_alert").modal(true); } function smartTrim(string, maxLength) { if (!string) return string; if (maxLength < 1) return string; if (string.length <= maxLength) return string; if (maxLength == 1) return string.substring(0,1) + '...'; var midpoint = Math.ceil(string.length / 2); var toremove = string.length - maxLength; var lstrip = Math.ceil(toremove/2); var rstrip = toremove - lstrip; return string.substring(0, midpoint-lstrip) + '...' + string.substring(midpoint+rstrip); } function getPrice(price) { // 0.49 이하 -> 0.49로 변경 // 0.99 이하 -> 0.99로 변경 var int_price=parseInt(price); var minus=price-int_price; minus=Math.floor(minus*100)/100; if(minus<=0.49) { return int_price+0.49; } else if(minus<=0.99) { return int_price+0.99; } } function getPrice2(price) { var int_price=parseInt(price); var minus=price-int_price; minus=Math.floor(minus*100)/100; return Math.ceil(int_price+minus); } function getPrice3(price) { var int_price=parseInt(price); return Math.ceil(int_price/10)*10; } function getStatus(status) { switch(parseInt(status)) { case 0: return "정상"; break; case 9: return "전체품절"; break; case 8: return "단품절"; break; case 7: return "품절"; break; case 6: return "일시품절"; break; } } function getSpliter(str) { var spliter1=false; // - var spliter2=false; // _ if(str.indexOf("-")!=-1) { spliter1=str.indexOf("-"); } else { spliter1=999999; } if(str.indexOf("_")!=-1) { spliter2=str.indexOf("_"); } else { spliter2=999999; } if(spliter1 3) { s[0] = s[0].replace(/\B(?=(?:\d{3})+(?!\d))/g, sep); } if ((s[1] || '') .length < prec) { s[1] = s[1] || ''; s[1] += new Array(prec - s[1].length + 1) .join('0'); } return s.join(dec); }