jquery(2)
-
JAVASCRIPT 정규식 유효성 검사
1. Regular Expressions in JAVASCRIPT A. match() : The match() method searches a string for a match against a regular expression, and returns the matches, as an Array object. 정규식 : http://www.w3schools.com/jsref/jsref_obj_regexp.asp .match(/^\d+$/ig) // 숫자인지 판별하는 정규식입니다. .match(/^(\w+)@(\w+)[.](\w+)$/ig) // asdf@asdf.com 형식을 판별하는 정규식 .match(/^(\w+)@(\w+)[.](\w+)[.](\w+)$/ig) // asdf@asdf.co.kr 형식..
2013.07.30 -
JQuery를 사용하면서.. 여러가지 팁들이 등장하고 있네요
JQuery를 사용하면서.. 여러가지 팁들이 등장하고 있네요 (오홋..이런 시험문제도 출시 되는군요) 1. jQuery Proven Performance Tips & Tricks http://www.slideshare.net/AddyOsmani/jquery-proven-performance-tips-tricks 2. 10 jQuery iPhone Style Plugins iphone Style 의 UI 구현 플러그인... http://www.jquery4u.com/mobile/10-jquery-iphone-style-plugins/ 3.자바 스크립트 고급 팁& 트릭 모음 특정브라우저에 종속되지 않는 순수 자바스크립트 코드들입니다 http://code.google.com/p/jslibs/wiki/Javas..
2011.07.14