> 웹 프론트엔드 > JS 튜토리얼 > jquery는 iframe에서 dom 객체를 가져옵니다(두 가지 방법)_jquery

jquery는 iframe에서 dom 객체를 가져옵니다(두 가지 방법)_jquery

WBOY
풀어 주다: 2016-05-16 17:30:26
원래의
1261명이 탐색했습니다.

상위 창에서 iframe을 작동합니다: $(window.frames["iframeChild"].document) //iframe의 id가 iframeChild인 경우

하위 창에서 상위 창을 작동합니다: $(window. parent.document)

다음으로 iframe에서 계속해서 dom을 얻을 수 있습니다.

iframe에서 DOM 개체를 가져오는 방법에는 두 가지가 있습니다.

1 $(window.frames["iframeChild"].document).find("#child ")
2 $("#child",window.frames["iframeChild"].document)

1. 상위 창의 IFRAME에 있는 모든 라디오 버튼을 선택합니다

코드 복사 코드는 다음과 같습니다.

$(window.frames["iframeChild"].document).find( "input[ @type='radio']").attr("checked","true");

2. IFRAME
코드 복사 코드는 다음과 같습니다.
$(window.parent.document).find("input[ @type= 'radio']").attr("checked","true");

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿