我无法“检查”嵌入在可扩展 UL 中的输入复选框。我知道原因与点击绑定有关,但我就是想不通。
UL 是动态的,所以我添加了新的 li 和 UL。最低级别的 UL 包含应该可选择的 lis。但是,当我尝试单击它们时,它只会突出显示标签,并且复选框永远不会被选中。
这是HTML:
<li id="JeffID4" class="collapsed expanded">
Assessment
<ul class="inputs-list" style="display: block;">
<li id="apple">
<label class="checkbox inline">
<input type="checkbox">
ATGM
</label>
</li>
<li id="apple">
<label class="checkbox inline">
<input type="checkbox">
FMS
</label>
</li>
</ul>
</li>
这是javascript/jquery:
function prepareList() {
$('#expList').find('li:has(ul)')
.click( function(event) {
//If line item is expandable but has no line items then call the service to retrieve data
if($(event.target).hasClass('collapsed') && $(event.target).find('li').length==0){
$(event.target).children('ul').append("Add New LI's")
$('#expList').find('li:has(ul)').addClass('collapsed');
$('#expList').find('ul').addClass('inputslist'); $(event.target).find('li:has(input)').unbind();
$(event.target).children('ul').hide();
}
//Toggle the lists if they show or not
$(event.target).toggleClass('expanded');
$(event.target).children('ul').slideToggle('medium');
return false;
})
.addClass('collapsed').removeClass('expanded').children('ul').hide();
};
$(document).ready( function() {
prepareList()
});