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>")
1 つ目はページ内のすべてを検索しLI、2 つ目はページに追加できる新しい LI 要素を作成します。
LI
jQuery()参照については、メソッドのドキュメントを参照してください。これらのケースの両方をカバーする 2 つの主要なセクションがあります。
jQuery()
http://api.jquery.com/jQuery/
1 つ目は DOM 内のすべての li 要素を選択し、2 つ目は DOM に追加せずに切り離された新しい li 要素を作成します。
よろしく