我試圖在包含在父級中的子網中傳遞參數。如何使用加載jQuery傳遞參數
我在父使用此:
$('#idElemet').load('myPage.html?param1='+value);
在子網站(myPage.html下),顯示參數值的方式是:
alert(getURLParameter('param1'));
function getURLParameter(name) {
var match = RegExp('[?&]' + name + '=([^&]*)').exec(window.location.search);
return match && decodeURIComponent(match[1].replace(/\+/g, ' '));
}
但它不工作。任何想法讀取參數?
謝謝。
一個循環生成div並在每個div上調用加載函數,所以變量值在每次迭代中丟失。 – user3287825