mirror of
https://github.com/kou029w/nodejs-hands-on.git
synced 2025-01-18 16:08:05 +00:00
14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
|
"use strict";
|
||
|
|
||
|
// 外部リンクを新しいブラウザーコンテキストで開く
|
||
|
window.addEventListener("DOMContentLoaded", () => {
|
||
|
const selector = ["http:", "https:"]
|
||
|
.map((scheme) => `a[href^="${scheme}"]`)
|
||
|
.join(",");
|
||
|
|
||
|
document.querySelectorAll(selector).forEach((a) => {
|
||
|
a.target = "_blank";
|
||
|
a.rel = "noreferrer";
|
||
|
});
|
||
|
});
|