📜  过滤 jquery - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:16.803000             🧑  作者: Mango

代码示例1
$("span strong").first();   // first strong in first span
$("span strong").last();    // last strong in last span
$("div").eq(9);             // element with a specific index
$("div").filter(".big");    // all div elements with .big class
$("div").not(".big");       // opposite of filter