반응형 javascript.4 정규식 자바스크립트에서는(여기서만 이런건지 잘 모르겠지만...) 정규식을 /.../로 묶어준다. var pattern = /rules/; 식으로 써주면 된다. ^ : 시작표시(매칭이 처음부터 되어야 함) $ : 끝표시(문자열 끝에 매칭되어야 함) [] : 문자열 셋 [ab][a-z][0-9] 라고 써주면 첫글자는 a또는 b이고 그 다음에 a~z가 나오고 그 뒤에 0~9가 나온다는 뜻.. []안에서 ^쓰면 그 문자가 아닌것들 * : 0번 이상 반복 + : 1번 이상 반복 ? : 0 또는 1회 {} : 횟수 표시 [a]{2}이면 aa이고 [a]{2,}이면 a가 2개 이상인거 [a]{2, 4}이면 aa, aaa, aaaa 이다. \d : 숫자, [0-9]와 같음 \D : 숫자가 아닌 것들 [^0-9]와 같음 | : .. 2018. 4. 5. 5 Best JavaScript Frameworks in 2017 5 Best JavaScript Frameworks in 2017JavaScript popularity continues its rising. In 2016 we’ve witnessed such great changes, as AngularJS entire upgrade and introduction of Angular 2, ultimate dominating of jQuery that is applied on 96.5% of all JS sites, evolution of ECMAScript, two updates of Node.js in April and October accordingly, React finest hours, and even more. What to expect from 2017? .. 2017. 7. 4. javascript 객체 존재 유무 / window.onerror 가령 아이프레임이 있나 없나.. 를 따지거나 객체가 있는지 없는지를 따지고 싶을때 if ( parent.document.getElementById("찾는 객채") != null ) { //// 있으면 }else{// 없으면..{ 에러 발생 처리후 다음행 실행등 진행이 필요할때 window.onerror = function(){ return true; } 2015. 7. 10. Nivo sloder 를 이용한 간단한 javascript web book viewer, 북 뷰어 북뷰어가 간단히 필요해서 만들게 되었다. 책장을 넘기는 유려한 효과를 주기위해 깔끔한 Nivo sloder 를 사용하였다 javascript web book viewer 섬네일 기능을 사용하여 ..책페이지를 고를 수 있게 처리 및 페이지 넘김.. 관련된 파일은.. 1. js 2. html 표현.. 3.script 는 아래 처러 .. 더 많은 옵션은... http://docs.dev7studios.com/jquery-plugins/nivo-slider 2014. 12. 11. 이전 1 다음 반응형