如何使用 mootools 检索当前查询字符串值
如何使用 mootools 检索当前查询字符串值。
我正在使用 mootools ajax 进行 php 分页。以下参数是我的第一次调用时传递的
format=html&nolayout=true&p[0]=1000-1500&p[1]=1500-2000&p[2]=2000-2500
,第二次 ajax 调用应保留上述所有参数,并需要附加一个参数,如下所示
format=html&nolayout=true&p[0]=1000-1500&p[1]=1500-2000&p[2]=2000-2500&pagenum=1
如何执行此操作。请提供帮助
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以简单地使用
window.location.search
即获取当前 QS 并删除第一个字符
?
,以及&pagenum=X
(替换 + 正则表达式),然后附加新的参数并发送您的ajax请求。You could simply use
window.location.search
i.e.Get the current QS and remove the first character
?
, and also&pagenum=X
(replace + regexp), then append the new param and send your ajax request.