我想将我的页面重定向到我的变量中出现的 url,但它在没有警报的情况下无法工作。
如果我发出警报,那么它会重定向,否则不会。
$(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>