반응형
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
- github
- 로깅
- Git
- 초기설정
- 윈폼
- checkbox
- ejs
- input
- 한번에 체크
- 깃허브
- MSSQL
- jQuery
- SSMS
- sql 서버
- Compare
- C#
- header
- footer
- 비교
- ChatGPT
- nodejs
- body
- 하위노드
- WinForm
- treeview
- html 코드
- json
- CheckAllChildNodes
- SQL Server
- 깜빡임
Archives
- Today
- Total
반응형
목록History (1)
반응형
타닥타닥 민타쿠
jQuery 깜빡임 없이 동적 페이지 전환 구현하기(뒤로가기, 새로고침 지원)
두괄식으로 말해서, 1. movePage 함수 선언 function movePage(navigator) { var pageUrl = $(navigator).attr("url"); if (pageUrl !== location.pathname) { history.pushState({ path: pageUrl }, null, pageUrl); var popStateEvent = new PopStateEvent('popstate', { state: null }); dispatchEvent(popStateEvent); // event 발생시키기 } } 이동하려는 url 정보를 받아 path 라는 이름으로 history.state 에 저장하고, popstate 이벤트를 발생시킨다. 2. onclick 에 moveP..
개발/Nodejs
2021. 7. 18. 15:43
반응형