我現在有這個網址的地址欄window.location.href不工作,國防部重寫或jQuery的?
http://localhost/cp/subscribed&type=topics
當我點擊search-button-cp
應該加上&search=$term
$(".search-button-cp").live("click", function() {
var url = $(this).parents(".search-container:first").attr("data-url");
var search = $(this).parents(".search-container:first").find(".search-input-cp").val();
window.location.href = url + "&search=" + search;
});
,而不是我得到這個網址
http://localhost/cp/localhost/cp/subscribed&type=topics&search=car
我alert(url)
,我得到localhost/cp/subscribed&type=topics
...所以有什麼問題?
應該重定向到該網址localhost/cp/subscribed&type=topics&search=car
如何解決這個問題?
這裏是我的國防部重寫櫃面它是罪魁禍首
RewriteRule ^cp/([A-Za-z0-9-]+)?(/[A-Za-z0-9-]+)?(/[A-Za-z0-9-]+)?([^.]+)?/?$ /cp.php?o=$1&id=$2&p=$3&query=$4 [L]
當你指定GET參數,你應該把一個**之前的第一個,不是** **? – Greg