1

我有以下代码将变量从 example1.html 传递给 example2.html ,window.location.href 中的语法是什么,以使用用户名和关键字导航到 example2.html。

示例1.html

<script type="text/javascript">
    var username = ($("#username").val());
    var keyword = ($("#keyword").val());

    $("#button1").click(function(){
         window.location.href = "http://localhost:2757/example2.html";
    });
</script>
4

1 回答 1

5

如果你想通过查询字符串参数传递它们,你可以这样做:

window.location = "http://localhost:2757/example2.html?username=" + username + "&keyword=" + keyword;
于 2010-09-21T04:46:44.030 回答