Ajax在每次色框加载时调用增量次数

Ajax called increment times on each colorbox load

本文关键字:调用 Ajax 加载      更新时间:2023-09-26

我有一个jquery函数,调用一个php文件点击按钮在colorbox。问题是每次我打开colorbox的php文件调用增量次数通过colorbox。

Jquery代码:

$('.ajax').colorbox({
                onComplete:function(){
                    $.colorbox.resize();
                    $(document).on("click","#list_schemes",function(){
                        $.colorbox({
                            href:"./php_page.php,
                        });
                    }); 
                },
Html代码:

<button type="button" id="list_schemes">Activate Schemes</button> // this is in colorbox

请帮忙解决。

每次ajax调用都添加click事件。下面的代码应该只运行一次。

$(document).on("click","#list_schemes",function(){
    $.colorbox({
        href:"./php_page.php,
    });
});