我正在努力让它发挥作用:
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")
在创建单元格并将此单元格插入表格行之前对其进行增强。
问题:
如何让此复选框正确呈现?
感谢帮助!