gpt4 book ai didi

javascript - 检测是否存在具有属性 [itemtype ='http://schema.org/Offer' ] 的标签的最快方法

转载 作者:行者123 更新时间:2023-11-30 13:19:06 29 4
gpt4 key购买 nike

如果当前页面中存在具有属性 [itemtype='http://schema.org/Offer'] 的 HTML 标记,我希望以最快的方式使用 Javascript 进行检测。

最佳答案

if(document.querySelectorAll("*[itemtype='http://schema.org/Offer']").length){
alert("It is there!");
}

使用Sizzle对于IE 7 and below .它与 jQuery 的 CSS 选择器引擎相同,但没有那些花哨的东西。

document.querySelectorAll = document.querySelectorAll || Sizzle;

关于javascript - 检测是否存在具有属性 [itemtype ='http://schema.org/Offer' ] 的标签的最快方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10926746/

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