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.
下面的代码有区别吗
$("li")
和
$("<li>")
第一个将LI在页面中查找所有内容,第二个创建一个新的 LI 元素,然后可以将其添加到页面中
LI
作为参考,请查看jQuery()方法文档。有两个主要部分涵盖了这两种情况
jQuery()
http://api.jquery.com/jQuery/
第一个选择 DOM 中的所有 li 元素,第二个创建一个分离的新 li 元素而不将其添加到 DOM。
问候