我有一个div元素,它会在按钮点击时填充,它看起来像这样。
http://localhost:8080/sample?q1=asd&q2=ads
我想隐藏特定的查询参数(比如说q1)。我该怎么做?
我想在eithre js / jquery / html中找到解决方案。
修改:为了更清楚,这就是我的div元素的外观,
<div>
<pre>
"curl -X GET --header Accept: application/json" "http://localhost:8080/sample?q1=asd&q2=ads"
</pre>
<div>
答案 0 :(得分:1)
当然,您甚至可以使用JS更改显示的地址:
history.replaceState(null, null, "/whatever url");
您也可以尝试修改location.search
,但它也会刷新页面。