我希望浏览器在 JavaScript 中的 if() 循环内显示 403(禁止页面)(即:替换 window.location = 'unauth.html' 语句。)。我不想重新路由到 unauth.html 页面。我怎样才能做到这一点?
$(document).ajaxComplete(function (event, xhr, settings) {
if (xhr.responseText.indexOf('Unauthorized access') >= 0)
// Show unauthorized page
window.location = 'unauth.html';
});