我有一個查詢字符串,它看起來像這樣page3.html?redesigndata=value
其中如果從page2.html重定向時從page1.html和page3.html?new=yes
或no
重定向出現。下面是我使用找出查詢字符串是什麼,做page3.html如何使用javascript訪問查詢字符串?
var locurl = window.location.search;
if (locurl.substring(0, 13) === '?redesigndata') {
alert("redesign!");
} else if (locurl.substring(0, 4) === '?new') {
visit = locurl.substring(5);
alert("somthing!");
if (visit === 'yes') {
alert("first!");
} else if (visit === 'no') {
alert("again!");
}
}
一些函數的代碼,但是當我嘗試這個劇本我沒有得到任何警告,我不能找出它出什麼問題了。
您是否嘗試過使用FireFox在FireFox或類似軟件中運行它? – freefaller 2012-07-12 16:19:58
我不打算提出另一個答案,但我沒有看到腳本的問題...看起來工作正常 – freefaller 2012-07-12 16:24:16
alert(window.location.search);你得到了什麼? – kiranvj 2012-07-12 16:30:18