我正在尝试制作一个包含两个动作的书签。第一个是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);
})();