我想在按钮单击事件上动态显示复选框。我写了这样的代码
$("button").on('click',function(){
$(".chkbx").each(function(){
$(this).show();
});
});
$("#treeview").kendoTreeView({
checkboxes: {
checkChildren: true,
template: " # if(item.categoryid == 0){ } else { # <input type='checkbox' id='#= item.haschildren #-#= item.categoryid #' name='chkbox' class='chkbx' />#}#"
},
dataSource: initial,
dataTextField: ["categoryname"]
});
此代码在 chrome 中工作,但在 Firefox 中不工作。