我有一个列表li的
<li><label><input type='checkbox' class='className' value='" + someID + "' /> Some Name </label></li>
我创建的方式li的
var container= "#checkbox-menu"
var tempElement ="<li><label><input type='checkbox' class='className' value='" + someID + "' /> Some Name </label></li>";
$(container).append(tempElement);
我需要删除liin中的值input等于的元素someID。
我想出了这样的东西
$("#checkbox-menu li:has('label'):has(input[value='"+ someID +"'])").remove()
但是它没有用。
预先感谢您的帮助。
梦里花落0921
相关分类