gpt4 book ai didi

php - 如何使用 ajax post 和 url 的放大弹出窗口?

转载 作者:行者123 更新时间:2023-12-01 07:59:51 24 4
gpt4 key购买 nike

大家好,有没有一种方法可以通过ajax使用放大弹出窗口,一旦触发放大弹出窗口,我将使用它来插入数据。

这是我的代码:

$(function () {

$('.popup-modal').magnificPopup({

$.ajax({
type: "POST",
url: "insertVote.php",
data: dataString,
cache: false,

success: function(html) {
parent.html(html);
}
});

});
return false;

最佳答案

您需要使用回调函数:

$('.popup-modal').magnificPopup({

callbacks : {

open : function(){
$.ajax({
type: "POST",
url: "insertVote.php",
data: dataString,
cache: false,
success: function(html) {
parent.html(html);
}
});
}
}
});

关于php - 如何使用 ajax post 和 url 的放大弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20823466/

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