如果我了解您要发生的事情,那么这就是我的实现方式。它在Prototype中而不是jQuery中,但是您花的时间不会花很多时间来翻译:
new Ajax.Request('process.php', { on401: function(response) { var redirect = response.getHeader('Location'); document.location = redirect; }});
header('Location: http://example.com/login.php', true, 401);exit;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)