일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- jQuery
- IIS
- microsoft
- Winform
- 단축키
- DataGrid
- 프로시저
- 마이크로소프트
- CONVERT()
- c#
- 오라클
- javascript
- MSSQL
- Excel
- oracle
- 리포팅서비스
- 엑셀
- windows
- 윈폼
- 이클립스
- MS
- 비주얼스튜디오
- aspnet
- SSRS
- replace()
- 태그를 입력해 주세요.
- attr()
- ASP
- 윈도우
- 자바스크립트
Archives
- Today
- Total
목록hasClass() (1)
DJ메탈짱™의 Free Style
[Jquery] javascript addClass, removeClass, hasClass #정규식
function hasClass(ele,cls) {return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));}function addClass(ele,cls) {if (!this.hasClass(ele,cls)) ele.className += " "+cls;}function removeClass(ele,cls) {if (hasClass(ele,cls)) {var reg = new RegExp('(\\s|^)'+cls+'(\\s|$)');ele.className=ele.className.replace(reg,' ');}}//call the functionsaddClass(document.getElementById("test"), "test");remo..
일(job)/FRONT
2016. 1. 21. 13:13