小编典典

jQuery Ajax在URL中添加哈希

ajax

我这里有使用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>

有了给定的内容,我该如何在网址中添加哈希?


阅读 312

收藏
2020-07-26

共1个答案

小编典典

这是一个工作示例(不考虑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>
2020-07-26