在iframe子頁面取得父頁元素
程式碼如下:
$('#objId', parent.document); // 搞定...
在父頁面取得iframe子頁面的元素
程式碼如下:
##
$("#objid",document.frames('iframename').document) $(document.getElementById('iframeId').contentWindow.document.body).html() $("#testId", document.frames("iframename").document).html();
$(window.frames["iframeName"].document).find("#testId").html()
jQuery訪問頁面內的iframe,相容IE/FF #注意:
框架內的頁面是不能跨域的!
假設有兩個頁面,在相同網域下.
index.html 檔案內含有一個iframe:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>页面首页</title> </head> <body> <iframe src="iframe.html" id="koyoz" height="0" width="0"></iframe> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>iframe.html</title> </head> <body> <div id="test">www.koyoz.com</div> </body> </html>
JavaScript程式碼
document.getElementById('koyoz').contentWindow.document.getElementById ('test').style.color='red'
物件,並將其顏色設為紅色.此程式碼已經測試通過,能支援IE/firefox .
2. 在index.html裡面借助jQuery存取:
JavaScript程式碼
$("#koyoz").contents().find("#test").css('color','red');
#
以上是Jquery取得iframe的各級元素、內容或ID的實例方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!