是否可以触发 2 个链接,但实际上只有一个被加载?我需要“注销”而不是加载,而是以某种方式在后台触发(隐藏),这样他就可以执行“注销”功能。
script type="text/javascript">
window.location.href='logout.html';
window.location.href='index.html';
</script>
是否可以触发 2 个链接,但实际上只有一个被加载?我需要“注销”而不是加载,而是以某种方式在后台触发(隐藏),这样他就可以执行“注销”功能。
script type="text/javascript">
window.location.href='logout.html';
window.location.href='index.html';
</script>
使用 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
}
});