使用struts2和sj标记获取浏览器返回链接

时间:2013-06-12 06:50:13

标签: jsp struts2 struts2-jquery-plugin

如何使用Struts2 sj tags获取浏览器后退链接... 我已经尝试过这段代码......

<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
     $(document).ready(function() {
         $("#login").click(function() {
             alert('HKIiu');
             var currentPage = 1;
             setupPage(currentPage + 1);
             history.pushState(currentPage, document.title, '?x=' + currentPage);
         });
     });
     onpopstate = function(event) {
         alert('Hi2');
         setupPage(event.state);
     };
     function setupPage(page) {
         alert('Hi3');
         currentPage = page;
         document.title = 'Poliopedia' + currentPage;
         document.links[0].href = '?x=' + (currentPage + 1);
         return false;
     }

<sj:a href="login/loginPage.jsp" targets="loginDiv" id="login">Login</sj:a>

但这对我没有帮助......

1 个答案:

答案 0 :(得分:0)

返回链接href属性应该有&#34; javascript:history.back()&#34;值而不仅仅是&#34; history.back()&#34;如罗马C. 它适用于我。