[转]jquery取得iframe元素的方法
Posted by quentin 在 Monday, 13 December 2010收集利用Jquery取得iframe中元素的几种方法 :
Js代码
- $(document.getElementById('iframeId').contentWindow.document.body).htm()
$(document.getElementById('iframeId').contentWindow.document.body).htm()
显示iframe中body元素的内容。
Js代码
- $("#testId", document.frames("iframename").document).html();
$("#testId", document.frames("iframename").document).html();
根据iframename取得其中ID为"testId"元素