我正在使用modal window plugin进行用户注册和登录页面。成功完成AJAX调用后,如何自动打开它?即没有点击或提交,它应该在成功的AJAX调用后自动打开。请告知此事。
答案 0 :(得分:0)
try to define in call back of success field in ajax
$.ajax({
url: "demo_test.txt",
success: function(result){
$('#my-modal').modal();
},
error: function(){
console.log("Something went wrong");
}
});
答案 1 :(得分:0)
success: function(result){
$("yourmodel").animatedModal();
}
答案 2 :(得分:0)
$("#yourmodalidgoeshere").animatedModal();
//triggers opening of Modal.
$("#yourmodalidgoeshere").click();
click()有助于触发模态。它对我有用。它没有尝试使用ajax调用。我想点击一个元素加载模态。在javascript函数里面,我使用了上面的代码,效果很好。