22
23

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

特定のURL時にパラメーターをつけてリダイレクトさせる

Last updated at Posted at 2014-06-09

サイト内のあるページに来た時に、
パラメーターをつけてそのままリダイレクトをかけさせます。

.js
var curURL = document.URL;
if(curURL.match(/information/)){   //URLにinformationがある時に
  if(curURL.match(/\?/)){//URLにパラメーターが既についているか判断する。
    location.href = curURL + "&test=123"
  }else{
    location.href = curURL + "?test=123"
  }
}
22
23
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
22
23

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?