如何检查跨度的值以及该值是否重定向用户?

时间:2019-01-29 21:41:03

标签: javascript html

所以我正在尝试将google auth添加到网站,但是重定向不起作用。因此,如果跨度的值为<span id="connected7rduqfr6hg1s" style="">Signed in</span> rederict ton example.org

,我想使用javascript手动重定向到另一个网站。

1 个答案:

答案 0 :(得分:0)

使用Javascript库(例如Jquery)进行此操作非常容易,您应该认真研究一下。但是,假设您不想或不能使用Jquery,这就是您在较新的浏览器上使用本机Javascript的方式。

var span = document.getElementById("connected7rduqfr6hg1s").firstChild;
if (span.nodeValue == "Signed in")
  window.location.assign("https://www.google.com");