본문 바로가기
Coding/HTML & CSS

[HTML & CSS] <button> 버튼 onclick 이벤트로 링크 이동 및 넣는법 - 초간단 !!

by 포스트it 2022. 4. 8.
728x90
반응형

[HTML & CSS] 버튼 onclick 이벤트로 링크 이동 및 넣는법 - 초간단 !!

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>버튼에 링크걸기</title>
</head>
<body>

    <h2>버튼 onclick 이벤트로 링크 이동</h2>
    <button type="button" onclick="location.href='https://seill.tistory.com/';"> 현재페이지에서 이동 </button>

    <button type="button" onclick="window.open('https://seill.tistory.com/');"> 새탭으로 이동 </button>

</body>
</html>

결과값

 

버튼 onclick 이벤트로 링크 이동

728x90
반응형

댓글