-3
A
回答
2
客戶方的域相同:
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) }
如果沒有,您需要爲Windows的HTA或服務器
相關問題
- 1. 如何獲取iframe內容?
- 2. 獲取iframe的內容
- 3. 如何從iframe跨域獲取內容
- 4. 如何從iframe獲取內容類型?
- 5. 如何獲取iframe內容寬度?
- 6. Firebug如何從IFrame獲取內容?
- 7. JQuery:從iframe獲取內容?
- 8. 從iFrame獲取內容
- 9. 將iframe內容重定向後獲取iframe內容
- 10. jQuery:獲取修改的iframe的內容
- 11. jQuery:獲取iframe內容,相同的域
- 12. 從外部url的iframe獲取內容
- 13. 獲取iframe加載後的內容
- 14. 無法獲取iframe的內容
- 15. 以角度獲取iframe的內容
- 16. 從jquery獲取iframe的內容
- 17. 獲取iframe內容的更改事件?
- 18. Python2.7獲取iframe的內容請求
- 19. 在keyup上獲取iframe的內容
- 20. 使用純JavaScript獲取iframe的內容
- 21. 獲取跨域iframe的DOM內容
- 22. 無法獲取iframe的內容w/jQuery
- 23. 獲取iframe中的內容在IE 7
- 24. iframe提交獲取發佈的內容
- 25. 使用jQuery獲取iframe的html內容
- 26. 獲取Iframe的原始內容
- 27. 獲取iFrame的最新內容
- 28. jquery如何獲得iframe頭值內容
- 29. 如何預取/緩存iframe內容?
- 30. 如何使用cURL刮取iframe內容
上的代理是您的域的此iframe一部分,因爲如果它不是,你就違反了[相同來源政策](http://en.wikipedia.org/wiki/Same_origin_policy)? – 2010-12-10 16:00:32
你已經標記了這個PHP和JavaScript。你是在談論在JS中用瀏覽器做這件事,還是用PHP解析文檔,在其中找到iframe,然後解析引用的文檔? – Quentin 2010-12-10 16:01:13
這味道不好... – Trufa 2010-12-10 16:09:10