循环使用JSON数据不能按预期工作

时间:2012-11-06 13:23:02

标签: html jquery jquery-selectors

我有以下脚本,其行为与我期望的行为不同:

success: function( widget_shell ) 
{ 
    if( widget_shell.d[0] ) {
        for ( i = 0; i <= widget_shell.d.length - 1; i++ ) {
           $( ".column_" + widget_shell.d[i].column_id ).append( "<div class='widget_" + widget_shell.d[i].widget_id + "'>" );
           $( ".widget_" + widget_shell.d[i].widget_id ).append( "<div class='widget_content_" + widget_shell.d[i].widget_id + "'>" );
           $( ".widget_" + widget_shell.d[i].widget_id ).append( "</div>" );
           $( ".column_" + widget_shell.d[i].column_id ).append( "</div>" );
        }
    }

这会生成如下HTML:

<div id="divMain">
    <div class="column_1 ui-sortable">
        <div class="widget_9">
            <div class="widget_content_9"></div>
            <div class="widget_content_9"></div>
        </div>
    </div>
    <div class="column_2 ui-sortable">
        <div class="widget_9">
            <div class="widget_content_9"></div>
        </div>
    </div>
    <div class="column_3 ui-sortable">
        <div class="widget_58">
            <div class="widget_content_58"></div>
        </div>
    </div>
</div>

当JSON数据如下所示:

{
    "d": [
        {
            "__type": "Widget_Shell",
            "column_id": 1,
            "widget_id": 9
        },
        {
            "__type": "Widget_Shell",
            "column_id": 2,
            "widget_id": 9
        },
        {
            "__type": "Widget_Shell",
            "column_id": 3,
            "widget_id": 58
        }
    ]
}

基本上,基于JSON数据我应该只看到每列一个小部件,这很好,但出于某种原因,我最终在第一列小部件中有2个内容......

知道为什么吗?

1 个答案:

答案 0 :(得分:5)

使用$("...")选择元素时,jQuery函数会搜索整个文档。在您的情况下,在第二次迭代中有两个.widget_9元素,每个元素都会附加<div>

您想要的只是附加到刚刚创建的元素,可以使用.appendTo来完成:

var $widget = $("<div class='widget_" + widget_shell.d[i].widget_id + "'>")
                .appendTo(".column_" + widget_shell.d[i].column_id);

$("<div class='widget_content_" + widget_shell.d[i].widget_id + "'>")
  .appendTo($widget);
每次迭代都会用一个新元素覆盖

$widget,所以你不会搞乱上一次迭代的元素。

请注意,jQuery知道如何使用$("<div>")创建元素,因此不需要结束标记。您还应该在i中声明var i