gpt4 book ai didi

javascript - 如何从 jquery 加载函数中检索 url 参数?

转载 作者:行者123 更新时间:2023-12-02 19:45:48 26 4
gpt4 key购买 nike

我有两个html,即index.html 和grid.html。我需要根据在index.html 文件中选择的下拉值来刷新网格内容。

在我的index.html页面中我有这个代码,

$(document).ready(function() {
$('#orderTypeOptions').change(function() {
var oType = $('#oTypeOptions').val();
$('#ordersGrid').load('grid2.html?oType='+oType);
});
});

我的问题是,如何在网格页面中检索 url 参数“oType”值?有人可以帮忙吗?

最佳答案

它以字符串形式存在于 window.location.search 变量中。您需要将其解析为名称值对并找到您感兴趣的变量。

关于javascript - 如何从 jquery 加载函数中检索 url 参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9891651/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com