gpt4 book ai didi

javascript - 如果类存在,用 Javascript 做一些事情

转载 作者:太空狗 更新时间:2023-10-29 13:04:12 24 4
gpt4 key购买 nike

我有一个类,如果它存在,我想将该变量用作 true/false if 语句。

HTML

<div id="snake" class="snake--mobile">

JS

var isMobileVersion = document.getElementsByClassName('snake--mobile');
if (isMobileVersion !== null)
alert('xx');

但是,它不起作用。有任何想法吗?没有 jQuery 答案,请。

最佳答案

getElementsByClassName 返回 NodeList这是一个类数组对象。您可以检查其 length 以确定是否存在具有已定义类的元素:

var isMobileVersion = document.getElementsByClassName('snake--mobile');
if (isMobileVersion.length > 0) {
// elements with class "snake--mobile" exist
}

关于javascript - 如果类存在,用 Javascript 做一些事情,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26254957/

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