当用户提供了错误的身份验证凭据时,但在弹出jAlert之后,恰好在按下jAlert的关闭btn之后,我无法重定向页面,但我无法这样做。请帮助我完成此任务。提前致谢!!!
这是代码:
<script>
$(document).ready(function () {
$.jAlert({
'title': 'Authentication Error',
'content': 'Invalid Username of Password"!',
'theme': 'blue',
'btns': { 'text': 'close' }
});
});
</script>
最佳答案
jAlert插件提供了一个onClose
函数,该函数会在模式消失时触发。在函数中定义所需的行为,例如:
<script>
$(document).ready(function() {
$.jAlert({
'title': 'Authentication Error',
'content': 'Invalid Username or Password!',
'theme': 'blue',
'btns': { 'text': 'close' },
'onClose': function(alertElem) {
// alert("Redirecting...");
window.location = "index.html";
}
});
});
</script>
请参见http://flwebsites.biz/jAlert/处的jAlert文档。