循环中生成的重排表没有响应

时间:2013-07-23 10:45:10

标签: jquery html css jquery-mobile html-table

ajax成功之后,我在 jQuery mobile 中循环生成重排表。但是问题是表没有响应。在小屏幕上,生成的表应该通过将表列折叠成堆叠的表示来工作,该表示看起来像每行的标签/数据对的块。当我输出表格标记时,我从循环生成并复制/粘贴到一个单独的页面,表格看起来很好,并且响应迅速。

我生成的HTML是:

<table data-role="table" id="time-table" data-mode="reflow" class="ui-responsive table-stroke">
    <thead>
       <tr>
         <th>Linje</th>
         <th>Destination</th>
         <th>Nästa tur (min)</th>
         <th>Därefter</th>
       </tr>
    </thead>
    <tbody>
       <tr>
         <th>7</th>
         <td>Resecentrum</td>
         <td>Nu</td>
         <td>11</td>
       </tr>
       <tr>
         <th>7</th>
         <td>Ö Lugnet via Resecentrum</td>
         <td>23</td>
         <td>51</td>
       </tr>
    </tbody>
</table>

当我复制生成的标记并粘贴到单独的文件时,在小屏幕中看起来像这样,这是what I need

enter image description here

然而,当我使用代码动态地执行此操作时:

success: function(data){
    //Generate table header and populate.
var thdata1 = "<th>"+data[2]+"</th>";
var thdata2 = "<th>"+data[3]+"</th>";
var thdata3 = "<th>"+data[4]+"</th>";
var thdata4 = "<th>"+data[6]+"</th>";

    var tblrow = $("<tr></tr>");
var thead = $("<thead></thead>");
var table = $("<table data-role=\"table\" id=\"time-table\" data-mode=\"reflow\" class=\"ui-responsive table-stroke\">");

tblrow.append(thdata1);
tblrow.append(thdata2);
tblrow.append(thdata3);
tblrow.append(thdata4);

    thead.append(tblrow);
table.append(thead)

    //Generate table body and populate.
var row = $("<tr>");
var flag = 0;
var tbody = $('<tbody>');
$.each(data, function(key, val){
    if(key >= 8){
    if(key%4 != 3){
      if(flag == 0)
        row.append("<th>"+val+"</th>");
      else
        row.append("<td>"+val+"</td>");
      flag++;
    }
    else if(key%4 == 3){
      row.append("<td>"+val+"</td>");
      tbody.append(row);
      row = $("<tr>");
      flag = 0;
    }
     }
     });
   table.append(tbody);
   table.appendTo("#contbl");
   console.log($("#contbl").html());
}

它生成一个正常的布局无响应表,如下图所示,即使在较小的屏幕中也保留相同的结构。此布局中的CSS也看起来不合适。我正在使用jQM提供的默认表class="ui-responsive table-stroke"

enter image description here

我生成的标记工作正常。我无法弄清楚这里有什么问题。

1 个答案:

答案 0 :(得分:2)

当你像你的情况一样创建动态html时,你必须使用

更新页面内容
$('page_id').trigger('pagecreate');