Jquery 에서 iframe 코드 가 져 오기

949 단어 Jqueryiframe
부모 창 에서 iframe:window.frames["iframe Child"].document//iframe 의 id 가 iframe Child 라면 하위 창 에서 부모 창 을 조작 합 니 다:window.parent.document:jquery 를 사용 하려 면 어떻게 jquery 로 iframe 을 가 져 옵 니까?다음은 모 으 는 방법 입 니 다.페이지 를 가 져 오 는 대상 은 dom 방법 에 jquery 의 선택 자 를 추가 하 는 것 입 니 다.부모 창 에서 iframe:$(window.frames[iframe Child].document)를 작 동 합 니 다./iframe 의 id 가 iframe Child 라면 하위 창 에서 부모 창 을 작 동 합 니 다:$(window.parent.document)다음 에 iframe 내 dom 을 계속 가 져 올 수 있 습 니 다.iframe 내 dom 대상 을 가 져 오 는 방법 은 두 가지 가 있 습 니 다.1$(window.frames[iframe Child].document).find("\#child")2$("\#child",window.frames["iframe Child"].document)1.부모 창 에서 IFRAME 의 모든 체크 단 추 를 선택 하 십시오.$(window.frames["iframe Child"].document).find("input[@type="radio").attr("checked","true");2.IFRAME 에서 부모 창 에 있 는 모든 체크 단추$(window.parent.document)를 선택 합 니 다.find("input[@type='radio']").attr("checked","true");

좋은 웹페이지 즐겨찾기