웹 개발에서는 iframe을 자주 사용하는데, 부모 창에서 iframe에 있는 요소를 사용하거나, iframe에서 부모 창에 있는 요소를 사용해야 하는 경우가 많습니다.
부모 창에서 iframe에 있는 요소를 가져옵니다
형식: $("#iframe's ID").contents().find("#iframe의 컨트롤 ID").click()
예: $("#ifm").contents (). find("#btnOk").click();
iframe에서 상위 창의 요소를 가져옵니다.
형식: $('#Element ID in the parent window', parent.document) . click();
예: $('#btnOk', parent.document).click();