mirror of
https://github.com/kou029w/nodejs-hands-on.git
synced 2025-01-17 23:55:11 +00:00
13 lines
357 B
JavaScript
13 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";
|
|
});
|
|
});
|