📜  检测元素是否具有类 jQurey - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:54.408000             🧑  作者: Mango

代码示例2
if ($(".mydivclass")[0]){
    // Do something if class exists
} else {
    // Do something if class does not exist
}