0

我正在努力让它发挥作用:

var selectorBox = $('<label for="'+selectorID+'"><input type="checkbox" id="'+selectorID+'" name="'+selectorID+'" class="selector" data-inline="true" data-iconpos="notext"></label>').trigger('create'),
    cell = $( "<th class='persist essential notxtchkbx rowHigh' "+rowSpanner+"></th>" ).append( selectorBox );

currentRow.prepend( cell );

selectorBox是复选框 HTML,我试图trigger("create")在创建单元格并将此单元格插入表格行之前对其进行增强。

问题
如何让此复选框正确呈现?

感谢帮助!

4

1 回答 1

1

要增强复选框,您需要调用trigger("create")其父元素。直接在复选框上调用它不起作用。只需使用类似的东西:

$("input.myCheckbox").closest("div").trigger("create");

它应该工作。

于 2012-09-29T10:35:54.177 回答