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