LoginSignup
0
0

More than 1 year has passed since last update.

JavaScript ページ遷移 location.href

Posted at

用途

ページ遷移したい時に使う

方法

location.href = 'https://hoge.com/';

遷移させたいURLを代入します
パラメーターをつけることも可能です
例 http://hoge.com?action=hoge&id=123

location.href = '/hoge/hogehoge';

パス指定も可能です
パラメーターをつけることも可能です
例 location.href = '/hoge/hogehoge?action=hoge&id=123';

上記コードはどちらも、ブラウザの戻るボタンで前のページに戻れます

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