如何检查是否加载了DIV元素,我尝试使用此代码
$(document).ready(function() {
$('.slajder').loaded(function() {
$('.carousel-caption').addClass('left-animation');
});
}
因此,当我的幻灯片盒DIV调用.slajder满载100%时,我想添加类左动画
答案 0 :(得分:1)
您也可以像这样检查div元素加载
if($('.slajder').length > 0){
// Do something
}
答案 1 :(得分:0)
您可以检查DIV是否由.length属性加载,如下所示。
$(document).ready(function() {
if( $('.slajder').length > 0) {
//write your code here
});
}