作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个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/
我是一名优秀的程序员,十分优秀!