什麼是>符號在下面的JavaScript(#todoList> DIV)是什麼意思?JavaScript是什麼意思?
$('#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)')
什麼是 「:不」?
靈感來自CSS選擇器意味着一級兒童 – kcsoft
這實際上就像一個基本的CSS選擇器。你把它提供給Jquery來選擇元素。在這裏閱讀更多:https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started/Selectors – thatidiotguy
http://stackoverflow.com/questions/3225891/what-does-mean-in- css-rules – Brad