JavaScript - 打开新页面并在其中搜索

时间:2012-10-30 22:33:24

标签: javascript search window find window.open

我还没有用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);
}

1 个答案:

答案 0 :(得分: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");
    }
  }
}