Javascript,Bookmarklets,重定向,然后采取行动

时间:2016-09-07 17:14:03

标签: javascript redirect bookmarklet

我正在尝试制作一个包含两个动作的书签。第一个是window.location = "http://example.com";,第二个是alert("123");

是否可以使用bookmarklet?

这是代码的逻辑:

javascript:(function{
window.location = "http://example.com";
var waitForText = setInterval(function(){
    bodytext = document.getElementsByTagName("body")[0].innerText;
    if(document.getElementsByTagName("body")[0].innerText.indexOf('Thank you for visiting example.com.') > -1){
        alert("123");
        clearInterval(waitForText);
    }
}, 1000);
})();

0 个答案:

没有答案