以下のようにすることでリンクが新しいタブで開かれたか確認することができます。
if (document.referrer) {
if (history.length == 1) {
console.log('リンクから新しいタブで開いた。')
} else {
console.log('リンクから同じウィンドウで開いた。');
}
} else {
console.log('アドレスバーにURLを入力して開いた。');
}
Go to list of users who liked
More than 1 year has passed since last update.
以下のようにすることでリンクが新しいタブで開かれたか確認することができます。
if (document.referrer) {
if (history.length == 1) {
console.log('リンクから新しいタブで開いた。')
} else {
console.log('リンクから同じウィンドウで開いた。');
}
} else {
console.log('アドレスバーにURLを入力して開いた。');
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked