我正在使用 jquery 将任意数据添加到 li 元素:
if($("li").data('family').$(this).text()==$(this).text()){
$("li").removeData('family',{'persons':''}); // I know this is wrong!
// any idea how to remove data from this object
}else{
//this part adds data which is not working fine
$("li").data('family',{$(this).text():$(this).text(),
'cat':'family'
});
}
上面我试图验证值是否已经退出,如果退出删除它。我面临1个问题:
- 如何从对象中添加/删除相同的键值
提前致谢!