Notice
Recent Posts
Recent Comments
Link
투케이2K
25. (html/css/javascript/jquery) onclick location href 사용해 특정 태그, url, 파일 이동 실시 본문
FrontEnd
25. (html/css/javascript/jquery) onclick location href 사용해 특정 태그, url, 파일 이동 실시
투케이2K 2021. 6. 2. 17:44/* =========================== */
[ 개발 환경 설정 ]
개발 툴 : Edit++
개발 언어 : html, css, js, jquery
/* =========================== */
/* =========================== */
[소스 코드]
<!-- 특정 태그로 이동 실시 -->
<div id = "home_move" onclick = "location.href='#static_header_container'"></div>
<!-- 특정 url 이동 실시 -->
<div id = "home_move" onclick = "location.href='https://www.naver.com'"></div>
<!-- 특정 파일 이동 실시 -->
<div id = "home_move" onclick = "location.href='../page/main.html'"></div>
/* =========================== */
/* =========================== */
[결과 출력]
/* =========================== */
반응형
'FrontEnd' 카테고리의 다른 글
Comments