是否可以触发2个链接但只有一个实际加载?我需要'注销'不加载但不知何故在后台触发(隐藏),所以他可以做'退出'功能。
script type="text/javascript">
window.location.href='logout.html';
window.location.href='index.html';
</script>
答案 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
}
});