在我的项目中,我有jquery警报框。点击该警告框按钮,我的页面会刷新,有可能吗?。请帮我解决这个问题。 oncliking okay button我的页面会刷新。
//
答案 0 :(得分:0)
假设您正在使用the jquery-confirm.js library,则应将回调函数作为onClose
属性传递并调用其中的location.reload()
函数:
$.alert({
title: 'Test',
content: 'Click "ok" to reload.',
onClose: () => location.reload(),
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://wzrd.in/standalone/jquery-confirm@latest"></script>
答案 1 :(得分:0)
在你的html文件中调用ConfirmDelete函数触发确认警报,点击成功就OK了页面。
function ConfirmDelete()
{
var r = confirm("Successful Message!");
if (r == true){
window.location.reload();
}
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="col-md-1"> <a href="#" class="btn btn-danger" onclick="return ConfirmDelete()">Delete</a></div>
答案 2 :(得分:-1)
只需在成功块中尝试:
successMsg: function(msg){
alert("test");
location.reload(); //as soon as user click on OK page with reload after that
}