クエリ文字列から javascript 変数への名前と値のペアを取得する組み込みの jQuery の方法はありません (ただし、あるべきではありませんか??)
しかし、人々はそれを行うために純粋な JavaScript 関数を作成しました: How can I get query string values in JavaScript? .
上記の質問に対する 2 番目の回答 ( Andy Eによる) を使用すると、すべてのクエリ文字列変数を JavaScript オブジェクトの名前と値のペアにキャプチャできます。彼が書いたものは次のとおりです。
var urlParams = {};
(function () {
var match,
pl = /\+/g, // Regex for replacing addition symbol with a space
search = /([^&=]+)=?([^&]*)/g,
decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
query = window.location.search.substring(1);
while (match = search.exec(query))
urlParams[decode(match[1])] = decode(match[2]);
})();
次に、これらを使用して、次のように jQuery でクエリ文字列名と同じ名前の入力のフォーム値を設定します。
$.each(urlParams, function(key, value){
$('form [name=' + key + ']').val(value);
});
更新:これは jsFiddle でテストするのが難しいため、実際の例として Web ページ全体を示します。値「a」、「b」、および「c」を、URL によって渡された値 (「1」、「2」、および「3」) に置き換えます。これを localhost で test.html として設定するだけです。次の場所に移動します。http://localhost/test.html?a=1&b=2&c=3
<!DOCTYPE html>
<html><head><title>Test URL params</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" >
$(function(){
var urlParams = {};
(function () {
var match,
pl = /\+/g, // Regex for replacing addition symbol with a space
search = /([^&=]+)=?([^&]*)/g,
decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
query = window.location.search.substring(1);
while (match = search.exec(query))
urlParams[decode(match[1])] = decode(match[2]);
})();
$.each(urlParams, function(key, value){
$('form [name=' + key + ']').val(value);
});
});
</script>
</head>
<body>
<form>
<input name="a" value ="a" /><input name="b" value ="a" /><input name="c" value ="a" />
</form>
</body></html>