2

我没有在 JavaScript 中做过任何编程,所以我什至不确定我是否走在正确的轨道上。理想情况下,我想要的是打开多个窗口,在它们中搜索特定字符串,然后关闭那些找不到该字符串的窗口。

此功能只是在一个新窗口中处理一页。它打开的页面确实包含我正在寻找的单词,但是当我运行它时,返回找不到字符串。

function open_win() {
    var wnd = window.open("http://www.bartleby.com/123/32.html");

    if (wnd.find("morning")){
        alert("string found");
    }
    else{
        alert("string not found");
    }
}

我修改了这段代码以包含延迟以让页面加载,但现在搜索功能似乎不起作用。警报永远不会出现。

function open_win() {
var wnd = window.open("http://www.bartleby.com/123/32.html");

setTimeout(function(){

    if (wnd.find("morning"))
    {
        alert("string found");
    }
    else
    {
        alert("string not found");
    }
},3000);
}
4

1 回答 1

0

窗口在打开时不包含任何内容。您需要等待它加载。类似的东西

function open_win() {
  var wnd = window.open("http://www.bartleby.com/123/32.html");

  wnd.addEventListener("load",function(){
    if (wnd.find("morning")){
      alert("string found");
    }
    else{
      alert("string not found");
    }
  }
}
于 2012-10-30T22:40:19.590 回答