如何动态添加"?q ='查询'" (其中'查询'是来自搜索框的查询字符串,并嵌入当前页面网址example.com/search/?='query')中的锚点链接网页?
可以在网站上找到一个例子:https://www.ecosia.org/search?q=test
此处该页面包含与'?q = test'添加了查询(例如https://www.ecosia.org/images?q=test)
感谢您的帮助
答案 0 :(得分:0)
这会将页面URL中的查询字符串附加到页面上的每个链接上。
var qs =window.location.search;
$('a').each(function(){
var href = $(this).attr('href')
$(this).attr('href',href+qs)
})