LoginSignup
1

More than 3 years have passed since last update.

【JavaScript】正規表現を使ってパラメータの値を取得する

Last updated at Posted at 2018-09-20

指定したパラメータの値を取得するための関数。

script.js
function getParam(val) {
  var p = location.search;
  var v = '(?:(?:^|.*\s*)' + val + '\s*\=\s*([^&]*).*$)|^.*$';
  return p.replace(new RegExp(v), '$1');
}

alert(getParam('hoge'));

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
1