Javascript - 使用不同的QueryString重新加载页面

时间:2012-05-15 13:44:54

标签: javascript javascript-events

我想使用JavaScript在URL中传递不同的参数来重新加载页面。

我的网页名称为test1.aspx,我用过:

window.location="test1.aspx?user=abc&place=xyz";

它不起作用...... !!!

3 个答案:

答案 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();