Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究一个代码,我看到了这个:
var $notes = $('<ol id="notes"></ol>');
我以为这是同一件事
var $notes = $('ol#notes');
但是我测试了它,它不是一回事......
有人可以启发我吗?
第一行创建了一个由标记表示的新元素。第二个已经匹配 DOM 中的现有元素。
文档中的这一部分可能会解释相关行的含义。