可能重复:
以字符串形式获取整个文档 HTML
我想在网页中找到正则表达式模式的所有实例。我想做这样的事情:
myWindow=window.open('http://en.wikipedia.org/wiki/Javascript','_self','');
var n=myWindow.document.match(/Jav/g); // This line obviously doesn't work but how would I do this?
myWindow.document.write(n);
有没有办法将网页中的所有文本放入一个字符串中,然后搜索该字符串?或者,有没有办法检索 HTML 源代码,然后可以搜索?我该怎么做?