iframe 하위 페이지에서 상위 페이지 요소 가져오기
코드는 다음과 같습니다.
$.('#objld', parent.document);
상위 페이지에서 iframe 하위 페이지 요소 가져오기
코드는 다음과 같습니다.
$("#objid", document.iframes('iframe').document)
또는
$(document.getElementById('iframeId').contentWindow.document.body).html() $(document.getElementById('iframeId').contentWindow.document.body).html()
은 iframe에 body 요소의 내용을 표시합니다.
$("#testId", document.frames("iframename").document).html()
상위 페이지 요소를 얻기 위한 iframe 하위 페이지 관련 추가 방법 기사는 PHP 중국어 웹사이트에 주목하세요!