목록[Web]/[Front-End] (2)
요르딩딩
팁
1. 포커스가 변경되면 호출 contenteditable blur event
[Web]/[Front-End]
2022. 1. 27. 15:37
hashHandler()
네이버는 웹도 앱도 뒤로가기 하면 검색했던거 다 나오는데, 쿠팡같은거는 뒤로가기 누르면 그냥 곧바로 홈으로 간다 했던거 있죠? function hashHandler() { var hash = (location.hash // '#cool-feature' var commands = hash.split("&"); if (commands["action"] == "search") $.ajax(~~); if (commands["action"] == "view") $.ajax(~~); } window.addEventListener('hashchange', hashHandler, false); 요런 식으로 개발해두고.. 검색할때 해시값만 변경하게 하면 ... 앞으로가기 뒤로가기 처리가 됨니다. 검색버튼 누르면 loca..
[Web]/[Front-End]
2020. 12. 24. 10:41