20
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【HTML】buttonタグでリンクを貼る方法

Last updated at Posted at 2020-10-16

#プログラミング勉強日記
2020年10月16日
HTMLでコードを書いてるときにbuttonタグでリンクを埋め込みたいと思ったのでその方法を備忘録としてまとめる。

#方法
 buttonタグはクリックできるボタンを作るもので、基本的な書き方は以下のようになる。

基本的な書き方
<button>表示させる内容</button>

 buttonタグを使ってリンクを貼る場合はonclick属性を以下のように追加する。

buttonタグでリンクを貼る方法
<button onclick="loction.href='リンク先のURL'">->location</button>
具体例
<button onclick="location.href='https://qiita.com/mzmz__02'">Qiita マイページ(buttonタグで)</button>

image.png

#他の方法でリンク先をbutton風にする

HTMLファイル
<a href="https://qiita.com/mzmz__02">Qiita マイページ(aタグで)</a>
<br><br>
<a class="button" href="https://qiita.com/mzmz__02">Qiita マイページ(aタグでスタイルを使って)</a>
<br><br>
<input type="button" onclick="location.href='https://qiita.com/mzmz__02'" value="Qiita マイページ(input buttonで)">
<br><br>
<button onclick="location.href='https://qiita.com/mzmz__02'">Qiita マイページ(buttonタグで)</button>
CSSファイル
.button {
  display: inline-block;
  border-style: solid;
  color: black;
  background-color: rgb(225, 224, 224);
  border-width:1px;
  border-color: darkgray;
  text-decoration: none;
}

image.png

20
13
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
20
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?