3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

記事投稿キャンペーン 「2024年!初アウトプットをしよう」

【HTML】リンクをクリック時、新規ページを別タブで開くようにする

Posted at

はじめに

通常、aタグで作成したリンクをクリックすると、
別タブを開かずに現在のタブでページを開き遷移してしまう。
本記事では、リンクをクリック時に新しく別のタブでページを開く方法を紹介する。

対象の方

  • タイトルに興味を持った方
  • リンクをクリック時に別タブで開く方法を知りたい方

ソース

以下のaタグ部分に記載しているように、
target属性に"_blank"を指定することで別タブを開けるようになります。

index.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <!-- 現在のタブでページを開いてしまう -->
    <a href="hogelink">ほげほげ</a>

    <!-- 新しいタブでページを開くことができる -->
    <a href="hogelink" target="_blank" >ほげほげ</a>
</body>
</html>

補足:便利なショートカット

上記のHTMLのひな形はvsCodeで作成しました。
vscodeのHTMLファイル(□□.html)では!+tab補完のショートカットで、
ひな形を生成することができます。

3
0
0

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
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?