gpt4 book ai didi

javascript - 如果元素包含子元素运行函数

转载 作者:行者123 更新时间:2023-12-02 19:21:41 25 4
gpt4 key购买 nike

我的网站上有一个轮播,如果没有元素,我的 jquery 似乎会崩溃。

我的没有元素的 HTML 输出是...

<section class="gallery-viewport-twobedroomapartment viewer">
<ul>
</ul>
<a id="simplePrevious"><img alt="Left Arrow" src="_includes/images/larr.png"></a>
<a id="simpleNext"><img alt="Right Arrow" src="_includes/images/rarr.png"></a>
</section>

我的 jQuery 是...

$('.gallery-viewport-twobedroomapartment').carousel('#simplePrevious', '#simpleNext');

是否可以判断 UL 是否包含 LI 然后运行该函数?

最佳答案

if($('.gallery-viewport-twobedroomapartment ul > li').length > 0) {
$('.gallery-viewport-twobedroomapartment').carousel('#simplePrevious', '#simpleNext');
}

关于javascript - 如果元素包含子元素运行函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12475086/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com