我想使用JavaScript在URL中传递不同的参数来重新加载页面。
我的网页名称为test1.aspx,我用过:
window.location="test1.aspx?user=abc&place=xyz";
它不起作用...... !!!
答案 0 :(得分:13)
window.location
是一个对象。您需要访问它上面的href
属性,如下所示:
window.location.href="test1.aspx?user=abc&place=xyz";
答案 1 :(得分:2)
如果您需要发送动态值,那么
var user = "abc";
var place = "xyz";
window.location.href = "test1.aspx?user=" + user + "&place=" + place;
答案 2 :(得分:0)
window.location = "path page?user=" + $("#txtuser").val();