我正在使用jquerymobile 1.3 - >列切换表小部件。 http://view.jquerymobile.com/1.3.0/docs/widgets/table-column-toggle/
我正在动态创建行和列。当我这样做时,列切换模式不起作用。如果我对数据进行硬编码,则可以正常工作。可能有什么不对?
我也很清楚,正如他们的文档中所建议的那样。
$( "#myTable" ).table-columntoggle( "refresh" );
我的Javascript代码很简单。
var tBody = document.getElementById('idTBody');
var tr = document.createElement('TR');
var td = document.createElement('TD');
td.innerHTML = "Some string";
tr.appendChild(td);
tBody.appendChild(tr);
idTBody是分配给Tbody标签的ID。
答案 0 :(得分:0)
似乎它是1.3.0中jquerymobile中的已知错误,将在1.3.1中修复。 这是链接 - > https://github.com/jquery/jquery-mobile/issues/5640这里是跟踪链接 - > https://github.com/jquery/jquery-mobile/issues/5570