본문 바로가기
프로그래밍/html

html 버튼에 링크걸기

by -현's- 2013. 9. 16.
반응형

 

●버튼에 링크를 걸려면 <a href="#">을 쓰면 안되고 버튼 태그 안에 onclick="location.href='#' "을 넣어줘야한다.

ex)


<input type="button" value="버튼" onclick="location.href='#' ">



<button type="button" onclick="location.href='javascript:jsFunction();' " >버튼 누르면 자바스크립트 실행</button>

반응형

댓글