gpt4 book ai didi

javascript - 在 ajax 事件上重新初始化 jquery 插件

转载 作者:行者123 更新时间:2023-11-30 05:50:41 25 4
gpt4 key购买 nike

我正在尝试使用 this plugin (jqtransform) 制作一些更漂亮的复选框。但是,我尝试应用它的复选框是通过 ajax get() 请求放在页面上的,其中 html 是从远程文件中提取的。

//apply custom styles to checkboxes
$(document).ajaxComplete(function(){
console.log('ajax complete');
//find all form with class jqtransform and apply the plugin
$("form").jqTransform();
});

不会初始化这些新的复选框。还有其他方法吗?

最佳答案

尝试在 $.get() 的“成功”函数中调用您的插件,例如

$.get(myurl, {
success: function() {
$("form").jqTransform();
}
});

关于javascript - 在 ajax 事件上重新初始化 jquery 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15011511/

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