如何将javascript变量从一个html页面传递到另一个html页面

发布于 2024-09-24 09:51:27 字数 428 浏览 5 评论 0原文

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

example1.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>

I have the following code to pass variable from example1.html to example2.html , what will be the syntax in window.location.href to navigate to example2.html with username and keyword.

example1.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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

GRAY°灰色天空 2024-10-01 09:51:27

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

window.location = "http://localhost:2757/example2.html?username=" + username + "&keyword=" + keyword;

If you want to pass them by query string parameters you can do this:

window.location = "http://localhost:2757/example2.html?username=" + username + "&keyword=" + keyword;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文