当前位置:首页 >> 网络编程

jquery 检测元素是否存在的实例代码

if ($('#myDiv).length) { 
    // your code 
}

 Simple, but not obvious.