0
1

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.

[はてなブログ] コンテンツエリアだけリンクを別ウィンドウ表示

Last updated at Posted at 2020-05-10

いちいち「html編集」モードでAタグに target="_blank" を挿入するのは大変です。でも、外部ドメインへのリンクは別ウィンドウにしたいですよね。そんなときは、

設定 > 詳細設定 > 検索エンジン最適化 > "headに要素を追加"

入力箇所はここです↓
link.png

に以下を設定してみましょう。

<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs=" crossorigin="anonymous"></script>
<script>
jQuery(document).ready(function(){
    $(".entry-content").find("a").attr("target", "_blank");
});
</script>

これでentry-contentクラスの配下のリンクは全て別ウィンドウに遷移するはずです。
お試しあれ。

この方法の他に、

<base target="_blank">

と設定してbaseを変更する方法もありますが、これだとメインタイトルをクリックしても、関連記事のリンクをクリックしてもどんどんWindowが量産されてしまうので、ちょっとユーザビリティ的によくないですね。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?