LoginSignup
10
7

More than 5 years have passed since last update.

window.openが動かないときはwindow.location.hrefで飛ばしたい

Last updated at Posted at 2017-12-21

window.location.hrefで飛ばした時はサーバーの設定等によって開かないときがあります。
window.openで新規タブを開くとうまくいきますが、現在ios safariではサポートしていません。

if(window.open(url,"_blank")){

}else{
  window.location.href = url;
}

これで両方に対応できます

10
7
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
10
7