我有一个url字符串,我想知道当我在页面上使用链接时,如何将order=desc部分更改为order=asc?
http://localhost/en/search?city=Paris#order=desc
当我点击链接时,例如
<a href="#">Change order</a>
url将变为
http://localhost/en/search?city=Paris#order=asc
只需在链接(href属性)中包含片段标识符(#
之后的部分)。
<a href="#order=asc">Change order</a>