我有一種可能的方式在jQuery url中使用GET
變量。就像在PHP中,我們有這樣的事情:JQuery URL GET變量
header('location : path/to/page.php?id='.$id);
,並在page.php文件,我們這樣做:
$id = $_GET['id'];
所以在jQuery的,我們可以這樣做:
window.location.replace(path/to/page.html/* and pass the url query here*/);
爲什麼要投票? –
你想重寫路徑'path/to/page.php?id =?'到'path/to/page.html'爲什麼不使用htaccess? – madalinivascu