#復習 buttonタグ
###新しタブへ
index.html
<button class="btn" onclick="window.open('リンク先')">ボタン</button>
###同じタブ
index.html
<button class="btn" onclick="window.location.href='リンク先'">ボタン</button>
Go to list of users who liked
More than 3 years have passed since last update.
#復習 buttonタグ
###新しタブへ
<button class="btn" onclick="window.open('リンク先')">ボタン</button>
###同じタブ
<button class="btn" onclick="window.location.href='リンク先'">ボタン</button>
Register as a new user and use Qiita more conveniently
Go to list of users who liked