这是login.html的代码:
<ul>
<li class="introduction">
<a href="introduction.html">
<span class="icon"></span>
Introduction
</a>
</li>
<li class="login active">
<a href="#">
<span class="login"></span>
Login
</a>
</li>
</ul>
外部链接将首先使用我想要保留的一些查询参数进入当前页面(登录) 。如果用户点击第一个链接introduction
,就会加载 Introduction.html。但是,上一页(登录)的所有查询参数都丢失了。
无论如何我可以在保留查询参数的同时加载此页面吗?使用 HTML 或 Javascript。
非常感谢。