我想將我的頁面重定向到即將到達我的變量的url,但它不工作時沒有提示。沒有提醒頁面沒有通過jquery重定向
如果我把警報然後重定向否則不。
$(document).ready(function(){
$("a").click(function(){
var newurl = 'http://www.xyz.com/' + $(this).attr('href');
//$(this).attr(newurl,'href');
window.location.href = newurl;
alert(newurl);
});
});
提前感謝名單
錨標記
<a href="includes/footer.jsp">new url</a>
您無法阻止默認操作,該操作位於鏈接中的URL後面。這將優先於手動設置URL(因爲默認操作稍後發生並因此覆蓋更改)。請參閱http://api.jquery.com/event.preventDefault/。爲什麼它使用'alert',我不知道。它可能以某種方式取消默認操作。 – 2013-05-01 09:10:59