Web/Javascript

[jQuery] iframe 상위의 객체 선택하기(SELECT)

saltdoll 2010. 11. 23. 17:45
반응형

jQuery를 이용해서, 팝업창의 iframe에서, 상위(parent)의 객체값 가져오기
[일반적인 javascript]

window.parent.document.getElementById('parentPrice').innerHTML 

[ jQuery를 사용할때 ]

$('#parentPrice', window.parent.document).html();

객체 id명을 셀렉트해서 해당 html값을 가져오네요.
 

참고: http://stackoverflow.com/questions/726816/how-to-write-this-in-jquery-window-parent-document-getelementbyidparentprice
 

반응형
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)