Java Script (1) 썸네일형 리스트형 유용한 java script // 문자열에서 한글 제거 function delKor(strValue){ var tmp = ""; for(var i=0;i 128) { if(!tmp){ tmp = strValue; } tmp = tmp.replace(strValue.substring(i, i + 1), ""); } } return trim(tmp); } // 숫자 체크 function isNumber(value) { if (value.match(/^[0-9]*$/g)) return true; else return false; } // 문자열 trim String.prototype.trim = function(){ return this.replace(/(^\s*)|(\s*$)/g, ""); } // checkbox 전체 선택 funct.. 이전 1 다음