あなたはこのように実行する必要があります。
GET:
$('#Selected').load("template.html?requiredid=VALUE_TO_PASS");
POST:
$('#Selected').load("template.html",{requiredid=VALUE_TO_PASS});
追加
が内部javascriptの方法で、以下のそれが好き
function GetURLParameter(sParam)
{
var sPageURL = window.location.search.substring(1);
var sURLVariables = sPageURL.split('&');
for (var i = 0; i < sURLVariables.length; i++)
{
var sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] == sParam)
{
return sParameterName[1];
}
}
}
をして使用します。:クエリパラメータを読み込むための
$('#someDivId').html(GetURLParameter('requiredid'));
私は願って、それが役立ちます。
'$('#Selected ')のように、divにパラメータを追加して後で取り出すことができますload( "template.html"、{REQUIREDID:PARENTID})。data(' val '、' requiredid ' ) ' –