繁体   English   中英

jQuery不会更新动态生成的html

[英]jquery won't update dynamically generated html

我有一个加载我的收件箱消息的ajax函数,每个消息都有一个user_type和read字段。

我正在遍历消息并为其生成html。

function initializeMailbox() {
    // get all mailbox data
    user.GetInboxMessages(function (response) {
        if (response) {
            inboxMessages['inbox'] = response;
            $("#inbox-table").fadeIn();
            loadInboxTable();
            inboxDataTable = $("#inboxTable").dataTable();
            $("#inbox-count").html(inbox_msg_count);
            displayMessage(first_msg_id);
        }
    });
}
function loadInboxTable() {

    for (var i = 0; i < inboxMessages['inbox'].length - 1; i++) {
        first_msg_id = inboxMessages['inbox'][0].message_id;
        var user_type = "";
        if (inboxMessages['inbox'][i].user_type = 1)
            user_type = "DONOR";
        else if (inboxMessages['inbox'][i].user_type = 0)
            user_type = "CANDIDATE";
        else if (inboxMessages['inbox'][i].user_type = 2)
            user_type = "GROUP";

        $("#inbox-table-body").append(
            "<tr class='data-row' style='height: 75px;'> " +
                "<td>" +
                "<input type='hidden' id='user_type' value='" + inboxMessages['inbox'][i].user_type + "'/>" +
                "<input type='hidden' id='read' value='" + inboxMessages['inbox'][i].read + "'/>" +
                "<input type='checkbox' id='" + inboxMessages['inbox'][i].message_id + "'></input></td>" +
                "<td>" +
                "<p class='left'>" +
                "<img class='td-avatar' style='margin-top: 0px !important;' src='/uploads/profile-pictures/" + inboxMessages['inbox'][i].image + "' alt='avatar'/>" +
                "<br/>" +
                "<span class='user-type'>" + user_type + "</span>" +
                "</p></td><td>" +
                "<h2 onclick='displayMessage(" + inboxMessages['inbox'][i].message_id + ");'>" + inboxMessages['inbox'][i].firstname + " " + inboxMessages['inbox'][i].lastname + "</h2><br/>" +
                "<h3 class='message-subject' onclick='displayMessage(" + inboxMessages['inbox'][i].message_id + ");'>" + inboxMessages['inbox'][i].subject + "</h3><br/><br/>" +
                "<h3 style='font-size: 0.7em; margin-top: -25px; float:left;'><span>" + inboxMessages['inbox'][i].datesent.toString().split(" ")[0] + "</span></h3>" +
                "</td>" +
                "<td><button class='delete-item' onclick='deleteMessage(" + inboxMessages['inbox'][i].message_id + ");' src='/images/delete-item.gif' alt='Delete Message' title='Delete Message' style='cursor: pointer; float:left; margin-left: 5px; margin-top:-3px;'></button></td>" +
                "</tr>"
        );
        // check if the message has been read
        if (inboxMessages['inbox'][i].read == 0) {
            // not read
            $("#message-subject").addClass('read-message');
        } else {
            // read
            $("#message-subject").removeClass('read-message');
        }
        inbox_msg_count++;
    }
}

现在,如果我提醒出user_type的值并进行读取,则根据其迭代的消息,我将获得正确的值。 但是,当输出时,它仅使用第一条消息的值。

我需要能够基于这些值使用jquery动态设置消息的样式。 有人可以告诉我为什么这不起作用...

好吧, 一方面 ,您正在使用ID选择器:

$("#message-subject").addClass('read-message');

当您实际上课时:

<h3 class='message-subject'...

采用:

$(".message-subject").addClass('read-message');

其次 ,您要进行赋值( = )而不是对user_type进行比较( == )。

我可能会建议使用其他方法,而不是大的if..then..else吗?

使用数组来索引您的user_types:

var user_type_labels = [ 'CANDIDATE', 'DONOR', 'GROUP' ];

function loadInboxTable() {

    for (var i = 0; i < inboxMessages['inbox'].length - 1; i++) {
        first_msg_id = inboxMessages['inbox'][0].message_id;

        // One line instead of an if/then/else
        var user_type = user_type_labels[ inboxMessages['inbox'][i].user_type ];
        ...

第三 ,将多个具有相同ID的项目添加到DOM中。 这是不合法的,具有不确定的后果。

<input type='hidden' id='user_type' value='...
<input type='hidden' id='read' value='...

您需要为此使用类。

<input type='hidden' class='user_type' value='...
<input type='hidden' class='read' value='...

在您的代码中,我认为您打算执行以下操作

如果(inboxMessages ['inbox'] [i] .user_type === 1)

注意等号。 您当前拥有的将始终为true,并且user_type将始终分配给DONOR

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM