window.location.search.substringで取得できる。
取得したものは正規表現やsplitで必要なところを取り出す必要がある。
下記はidがキーのパラメータの値(数字)を取り出す様。
var query = window.location.search.substring(1); if(query.match(/id=(d+)/)){ alert(RegExp.$1); }
window.location.search.substringで取得できる。
取得したものは正規表現やsplitで必要なところを取り出す必要がある。
下記はidがキーのパラメータの値(数字)を取り出す様。
var query = window.location.search.substring(1); if(query.match(/id=(d+)/)){ alert(RegExp.$1); }