1

我正在使用 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。

4

1 回答 1

0

这似乎是 jquerymobile 1.3.0 中的一个已知错误,将在 1.3.1 中修复。这是链接--> https://github.com/jquery/jquery-mobile/issues/5640,这是跟踪链接--> https://github.com/jquery/jquery-mobile/issues/5570

于 2013-02-28T03:59:00.017 回答