我創建了一個查詢字符串,並將其添加到URL,像這樣:追加查詢字符串自變量的每一個URL
// HTML from index.html
<input type="button" value="Yes" onclick="redirect(this);" id="YES" class="btn btn-primary btn-lg">
<input type="button" value="No" onclick="redirect(this);" id="NO" class="btn btn-primary btn-lg">
// JS on index.html
function redirect(e){
var mapPg = "map.html";
var qString = "?choice=";
location.href = mapPg + qString + e.id;
}
開始的map.html
頁面上,我想利用這個查詢字符串,並貫徹始終,以除index.html頁面外的所有網址。
當用戶點擊price.html
pg時,它將使用查詢字符串來調用一個函數,該函數將提取「是」答案的數據。 「不」的答案也是一樣的。
我無法弄清楚如何將查詢字符串追加到單擊每個pg的URL上。
nav是一個包含JavaScript的文件,我已經將一類qString
添加到了nav中的所有<a>
,以便更容易地定位它們。
您不能設置cookie或sessionStorage或localStorage? – Hoyen