エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
jQueryでURLを自動リンク化 | 私的雑録
$(function () { var str; str = $('#document').html().replace(/(https?:\/\/[\x21-\x7e]+)/g, functi... $(function () { var str; str = $('#document').html().replace(/(https?:\/\/[\x21-\x7e]+)/g, function($1) { if ($1.match(document.domain)) { // ドメインが同じ場合は同じウィンドウ return '<a href="' + $1 + '">' + $1 + '</a>'; } else { // ドメインが異なる場合は別ウィンドウ return '<a href="' + $1 + '" target="_blank">' + $1 + '</a>'; } }); // 全て同じウィンドウで開く場合 // str = $('#document').html().replace(/(https?:\/\/[\x21-\x7e]+)/g, '<a href=

