gpt4 book ai didi

jquery - 使用 jquery 从 ajax 增量加载项目

转载 作者:行者123 更新时间:2023-12-01 01:18:34 26 4
gpt4 key购买 nike

谁能帮我写这个小代码吗?我试图在页面启动时加载项目列表,然后当用户单击更多项目时,将增量加载更多项目。

$(document).ready(function(){
$.get('videos.php', { id: "<?php echo $ID; ?>", start: 0 }, function(data) {
$('#list').html(data);
});
});

$('.showmorevids').click(function() {
var $input = $('.showmorevids span').attr('id').split('-');
alert(input);
$.get('videos.php', { id: input[0], start: input[1], total: input[2] }, function(data) {
$('#list').html(data);
alert("success");
});
});

videos.php 页面将返回一个项目列表和一个具有不同 id (id-start-total) 的新按钮,以便我可以将其用作新请求的新变量。第一个 $.get 在页面加载时加载得很好,但是当用户单击“更多”按钮时,什么也没有发生,也没有发送请求。有人可以告诉我我错过了什么吗?

最佳答案

使用 live('click') 而不是 click()。您无法使用 click() 绑定(bind)到动态加载的内容。这很可能是 jQuery click event doesn't work the second time 的重复项

关于jquery - 使用 jquery 从 ajax 增量加载项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7948099/

26 4 0
文章推荐: Nginx 配置错误 : can not detect int size
文章推荐: jquery - 单击时内联编辑 ,Rails 3.0/jQuery AJAX