반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- node.js
- docker
- mysql
- FCM
- popup
- security
- javascript
- nodejs
- PM2
- config
- MariaDB
- Eclipse
- MSsql
- Tomcat
- SpringBoot
- Next.js
- ajax
- NextJS
- spring3
- jenkins
- mybatis
- jquery
- git
- centos7
- yona
- Push
- Java
- rocky9
- pwa
- Maven
Archives
- Today
- Total
목록javascript (50)
종이 한장 차이...
javascript event.target.~~~ 으로 가져오기.
event.target 으로 참조할 수 있는 것들... 이벤트.타겟
javascript
2019. 12. 16. 18:00
jquery-cooki.js
리스트 내에 글의 읽음 여부를 표시하기 위해 아래와 같이 처리라도 가능하다. // jquery 링크 삽입 필요. jquery-3.3.1.min.js jquery.cookie.js // onclick function saveID(id) { if ($.cookie('idCookie')) { $.cookie('idCookie', $.cookie('idCookie') + "," + id); } else { $.cookie('idCookie', id); } } // make all links colored function setVisted() { var idArray = $.cookie('idCookie').split(','); for (var x=0; x
javascript
2019. 12. 5. 17:07