iframe 관련
페이지 정보
본문
######### iframe 만 리프레쉬 시키기 ##########
iframe안에 들어있는 문서에서 리프레쉬 시켜도 되고
iframe을 포함하는 부모페이지에서 리프레쉬시켜도 됩니다.]
iframe에 name속성으로 정해준 이름있져...
그거로 바로 자바스크립트에서 리프레쉬시키면 되요.
예를 들어서...
<iframe name=inline_frame></iframe>
이라고 하면
자바스크립트에서
inline_frame.location.reload();
또는
function changGu(val){
inline_frame.location.href="test.html?val=" + val;
}
####### iframe에 있는 Form을 submit시키기 ###############
<iframe id = frame1>
에 그러니까... iframe에 접근할려면..
document.all['iframe1']<--요기까지하면 접근이 됬고요..
iframe안의 문서에 접근해서 폼을 건들려면..
document.all['iframe'].document.form1<--요기까지하면되겠고요...
document.all['iframe'].document.form1.submit();
요롷게 하면 되겠네요..안되면 리플다시고욤..
###############################################
a안에 b가 iframe으로 있고 b에서 c를 새창으로 띄운경우
b는 c의 opener이고 a는 b의 parent입니다. a는 c의 opener.parent겠지요
iframe안에 들어있는 문서에서 리프레쉬 시켜도 되고
iframe을 포함하는 부모페이지에서 리프레쉬시켜도 됩니다.]
iframe에 name속성으로 정해준 이름있져...
그거로 바로 자바스크립트에서 리프레쉬시키면 되요.
예를 들어서...
<iframe name=inline_frame></iframe>
이라고 하면
자바스크립트에서
inline_frame.location.reload();
또는
function changGu(val){
inline_frame.location.href="test.html?val=" + val;
}
####### iframe에 있는 Form을 submit시키기 ###############
<iframe id = frame1>
에 그러니까... iframe에 접근할려면..
document.all['iframe1']<--요기까지하면 접근이 됬고요..
iframe안의 문서에 접근해서 폼을 건들려면..
document.all['iframe'].document.form1<--요기까지하면되겠고요...
document.all['iframe'].document.form1.submit();
요롷게 하면 되겠네요..안되면 리플다시고욤..
###############################################
a안에 b가 iframe으로 있고 b에서 c를 새창으로 띄운경우
b는 c의 opener이고 a는 b의 parent입니다. a는 c의 opener.parent겠지요
- 이전글input 또는 textarea 에서 글자수 제한하여 받기 21.02.10
- 다음글window 객체 21.02.10
댓글목록
등록된 댓글이 없습니다.