以下 javascript 中 (#todoList > div) 中的 > 符号是什么意思?
$('#btnClear').click(function () {
$('#todoList > div').each(function () {
var entity = $(this).data('entity');
$todo.context.TodoEntries.remove(entity);
});
$todo.context.saveChanges(updateView);
});
在 Html 文件中,#todoList 是 div 的 id。
<div id="todoList"></div>
在这个声明中
$('#wrapper>div:not(#providerSelection)')
什么是“:不”?