gpt4 book ai didi

javascript - 按类获取 chrome 元素

转载 作者:搜寻专家 更新时间:2023-11-01 04:11:25 24 4
gpt4 key购买 nike

我正在尝试将此代码添加到 chrome 扩展中,以便在聊天框可用时提醒我。它在一个带有类名 shoutbox 的 div 中,目前它不起作用。

function Detection(){
if(document.getElementsByClassName("shoutbox")!=null){
alert('Chat is available.')
}
}

Detection();

更新的代码:页面加载并且永远不会出现警告对话框。

function Detection(){
if(document.getElementsByClassName("shoutbox").length > 0){
alert('Chat is available.')
}
}

window.onload = Detection;

最佳答案

== null 不会检测到空数组(无结果)。你可以写

if(document.getElementsByClassName("shoutbox").length > 0){
alert('Chat is available.')
}

关于javascript - 按类获取 chrome 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5746805/

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