如何从iframe中提取所有文本?
有没有办法做到这一点?
答案 0 :(得分:2)
Clientside同域:
var doc;
if (document.getElementById(iframeId).contentDocument) { // newer browsers
doc = document.getElementById(iframeId).contentDocument;
}
else if (document.getElementById(iframeId).contentWindow) { // older IE
doc = document.getElementById(iframeId).contentWindow.document
}
if (doc) { alert(doc.body.innerHTML) }
如果没有,您需要一个HTA for windows或服务器上的代理