gpt4 book ai didi

javascript - 向 jQuery Modal 发送 ajax 成功响应

转载 作者:行者123 更新时间:2023-11-30 10:16:15 27 4
gpt4 key购买 nike

当我单击提交并自动显示带有响应的模态时,如何将 ajax 成功响应发送到 jQuery 模态 (jQuery Modal Site)。这是我要发布的 ajax:

$('#rincian').submit(function() {
$.ajax({
data: $(this).serializeArray(),
type: $(this).attr('method'),
url: $(this).attr('action'),
success: function(response) {
$('#rinci').html(response);
}
});
return false;
});

更新Jossef 回答

我已将其更改为 $('#rinci').html(response).modal();

$('#rincian').submit(function() {
$.ajax({
data: $(this).serializeArray(),
type: $(this).attr('method'),
url: $(this).attr('action'),
success: function(response) {
$('#rinci').html(response).modal();
}
});
return false;
});

最佳答案

http://jsfiddle.net/5WEVL/

$('#clickme').click(function() {
$.ajax({
url: '',
success: function(response) {
$('#modal-div').html(response).modal();
}
});
});

添加 .modal(); 它应该可以工作

关于javascript - 向 jQuery Modal 发送 ajax 成功响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23561712/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com