11

我这里有这个使用 struts2-jquery 插件的代码

<h4>Choose A task</h4>
    <ul>
        <s:url value="views/ajaxvalidation.jsp" var="ajaxvalidation" >
            <s:param name="menuId" value="1"/>
        </s:url>
        <li><sj:a targets="resultContent" href="%{ajaxvalidation}">Ajax Validation</sj:a></li>
    </ul>

当我点击它的内容时,url 变成了这样的东西,url 没有任何变化。它仍然保持不变,我想要的是当我单击链接时会发生这样的事情www.myapp.com/#ajaxvalidation。当我运行代码锚标记被翻译成这样的东西

<a id="anchor_1365013162" href="javascript:void(0)">Ajax Validation</a>

有了这个,我将如何在 url 中添加一个哈希?

4

2 回答 2

34

这是一个工作示例(不考虑 Struts2):

<html>
<body>
<a id="123" href="">Add Hash</a>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function() {
    $("a").click(function(e) {
        window.location.hash = $(this).attr("id");
        e.preventDefault();
    });
});
</script>
</body>
</html>
于 2012-12-21T08:28:06.263 回答
0

如果您不想跳转页面,则可以通过在现代浏览器上使用历史 API 并回退旧浏览器来解决此问题:

if(history.pushState) {
    history.pushState(null, null, '#myhash');
} else {
    location.hash = '#myhash';
}

归功于 Lea Verou

于 2021-08-19T14:59:49.243 回答