gpt4 book ai didi

javascript - 检查div是否存在,如果不存在则重定向

转载 作者:技术小花猫 更新时间:2023-10-29 12:36:30 26 4
gpt4 key购买 nike

如何检查我的页面上是否存在某个 div,如果不存在,将访问者重定向到另一个页面?

最佳答案

您需要使用 JavaScript 才能检查元素是否存在并进行重定向。

假设 div 有一个 id(例如 div id="elementId"),你可以简单地做:

if (!document.getElementById("elementId")) {
window.location.href = "redirectpage.html";
}

如果您使用的是 jQuery,则解决方案如下:

if ($("#elementId").length === 0){
window.location.href = "redirectpage.html";
}

添加:

如果您需要检查特定单词的 div 内容(我认为这就是您现在要问的),您可以这样做 (jQuery):

$("div").each(function() {
if ($(this).text().indexOf("copyright") >= 0)) {
window.location.href = "redirectpage.html";
}
});​

关于javascript - 检查div是否存在,如果不存在则重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7204155/

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