gpt4 book ai didi

javascript - 通过 AJAX 加载元素?

转载 作者:行者123 更新时间:2023-12-02 16:18:23 25 4
gpt4 key购买 nike

我正在使用 AJAX 从 php 页面加载一些内容。这工作正常。

但现在我需要使用 AJAX 加载元素(按钮、表单或 div)。

我当前不起作用的代码是这样的:

jQuery(document).ready(function() {


$(function(){
$('.delForm').on('submit', function(dleItem){


// prevent native form submission here
dleItem.preventDefault();

// now do whatever you want here


$.ajax({
type: $(this).attr('method'),// <-- get method of form
url: $(this).attr('action'),
//url: "cart.php",
data: $(this).serialize(), // <-- serialize all fields into a string that is ready to be posted to your PHP file
beforeSend: function(){

},
success: function(data){

}
});
});


});
});

我尝试做这样的事情:

document($('.delForm')).on('submit', function(dleItem){

还有这个:

body($('.delForm')).on('submit', function(dleItem){

但这将使我的代码停止工作。

有人可以就这个问题提出建议吗?

提前致谢。

最佳答案

使用

$(document).on('submit', '.delForm', function(dleItem) {});

关于javascript - 通过 AJAX 加载元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29369649/

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