触发链接但不更改页面内容

时间:2013-03-15 12:15:27

标签: java javascript redirect

是否可以触发2个链接但只有一个实际加载?我需要'注销'不加载但不知何故在后台触发(隐藏),所以他可以做'退出'功能。

script type="text/javascript">
  window.location.href='logout.html';
  window.location.href='index.html';
</script>

1 个答案:

答案 0 :(得分:1)

使用ajax来实现这一目标。没有必要加载您要执行的每个URL。这就是现代网页的设计方式。谷歌更多关于ajax。

您可以使用jquery ajax

$.ajax({
            type: "GET",
            url: redirecturl,
            async: true,
            success: function (response) {
                // called when the call executes successfully
            },
            error: function (response) {
                // called when the call cant execute successfully
            }
        });