1

我通过每秒调用的 ajax 调用将列表项动态添加到 jQuery 中的列表中。

下面是ajax调用的代码。

$.ajax({
    url: 'php/update_group_list.php',
    data: '', 
    dataType: 'json',
    success: function(data) {
        var id = data.instructor_id;
            group_cnt = data.group_cnt,
            group_name = data.group_name,
            group_code = data.group_code;

            for (i = current_row; i < group_cnt; i++)
            {
                //setInterval(function() { $('#group-list-div').load('php/group_list.php'); }, 5000);

                $('#group-list').append("<li><a href='#' data-role='button' class='view-group-btns' id='"+group_code[i]+"' value='"+id+"' text='"+group_name[i]+"'>"+group_name[i]+"</a></li>");
                $('#delete-group-list').append("<fieldset data-role='controlgroup data-iconpos='right'>" +
                                                    "<input id='"+group_code[i]+i+"' value='"+group_code[i]+"' type='checkbox' name='groups[]'>" +
                                                    "<label for='"+group_code[i]+i+"'>"+group_name[i]+"</label>" +
                                                "</fieldset>");
            }

            current_row = i; 

            $('#group-list').listview('refresh');
            $('#delete-group-list').trigger('create');
    }
});

现在我有两个问题

第一个问题:

当我尝试运行下面的代码时(如果在上面的代码中 $('#group-list').blah...blah 在此行中创建了任何列表项,它应该显示一个警告框),没有任何反应。

$(".view-group-btns").click(function() 
{
    alert("check");
});

第二个问题:

此外,当我尝试发送复选框的表单数据时(在上面的 ajax 调用代码中引用行 $('#delete-group-list').blah...blah),帖子返回错误意外令牌 <

我究竟做错了什么?我认为这两个问题是相关的,因为我正在创建动态使用的列表项。


这是与第二个问题有关的额外代码

HTML:

<form id='delete-group-form' action='php/delete_groups.php' method='post'>
    <h3 style='text-align: center;'>Check the Box Beside the Groups you Would Like to Delete </h3>
    <div style='margin-top: 20px;'></div>
        <div id='delete-group-list'>
        </div>
    <div style='margin-top: 20px;'></div>
    <input type='submit' id='delete-groups-btn' data-theme='b' value='Delete Groups(s)'>                    
</form>

JS代码

$('#delete-group-form').submit(function(e) 
{
    e.preventDefault();

    alert($('#delete-group-form').serialize());

    if ($('#delete-group-form').serialize() == "") 
    {
        alert('No groups selected to be deleted.')
        return false;
    }
    else 
        if ($('#delete-groups-form').serialize() == null) 
        {
            alert('No groups selected to be deleted.')
            return false;
        } 
        else 
        {
            $.post('php/delete_groups.php',$('#delete-groups-form').serialize()).done(function(data) 
            {
                obj = jQuery.parseJSON(data);


                var group_codes = obj.group_list;

                alert(group_codes);

                alert("The selected groups have been deleted");
                window.setTimeout(2000);
                return false;
            });
        }
    return false;
});

delete_groups.php

<?php 
    $group_codes = $_POST['groups'];    
    $items = array('group_list'=>$group_codes); //creating an array of data to be sent back to js file
    echo json_encode($items); //sending data back through json encoding
?>

我认为第二个问题的根源是 $group_codes = $_POST['groups']; 特别是 $_POST['groups'] 因为当我用 $group_codes = 'test'; 替换它时 (仅出于调试目的),代码按预期工作。

4

4 回答 4

3

您需要使用事件委托来使新创建的元素正常运行:

$("#group-list").on("click", ".view-group-btns", function() {
    alert("check");
});
于 2013-04-20T03:27:25.740 回答
1

我注意到你在这条线上有 3 个单引号......在控制组之后错过了一个

$('#delete-group-list')."<fieldset data-role='controlgroup data-iconpos='right'>"

这将解释意外的令牌 <

于 2013-04-20T03:29:09.290 回答
0

您必须在事件上使用 jquery。

$(".view-group-btns").on("click", function(event)
{
    alert("check");
});

为什么?

因为您只能在更新 DOM 之前创建的元素上使用常规“点击”。

当您在 dom 树中动态创建新元素时,您不能再使用 .click 了。

on(过去,.live(),现在已弃用)可以监听 DOM 树中的修改,并可以使用以后创建的元素。

于 2013-04-20T03:19:06.917 回答
0

从 ajax 调用中获取元素后,您必须绑定 click 函数。在 pageLoad 事件上的绑定只会与那些已经在 dom 中的元素绑定。所以做这样的事情。

$.ajax({
success : function(res){
//bind your click function after you update your html dom.
}
})
于 2013-04-20T03:32:31.037 回答