2015. 8. 20. 10:53ㆍFrontEnd/Web
옵션 -
<iframe src="" // URL frameborder="" // 테두리 ex) 0:사용안함 1:사용 width="" // iframe 가로size ex) 100% / 1024px height="" // iframe 세로size ex) 100% / 1024px scrolling="" // 스크롤바 ex) yes / no / auto align="" // iframe 내부 페이지 정렬 ex) center / left / right name="" // iframe name -> target 지정시 사용 id="" // iframe id -> script 에서 사용 hspace="" // 기준되는 곳에서 iframe 의 가로 위치 vspace="" // 기준되는 곳에서 iframe 의 세로 위치 marginwidth="" // 가로 여백 marginheight="" // 세로 여백 style="zoom:100%" // 원본 페이지 : 출력페이지 비율 조정 > </iframe> |
사용 예 -
<iframe width=900 height=550 name='IF' id='IF' src="http://www.google.com" frameborder="0" scrolling='no'></iframe> |
안된다...!?
Refused to display 'https://www.google.co.jp/?gfe_rd=cr&ei=9i_VVZmpEPPC8AfCgamgCg&gws_rd=ssl' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.
요딴식으로 에라가 뜨네..
막았구나...?
클릭재킹막느라 썼나.. 막았네...
아이프레임 안의 함수 호출 -
[iframe name].[function name](); -> IF.a(); |
아이프레임에서 팝업창을 띄우고 그 팝업창에서 아이프레임 함수 호출 -
opener.함수(); |
아이프레임을 정의한 곳의 함수를 호출 -
parent.함수(); |
'FrontEnd > Web' 카테고리의 다른 글
[bootstrap] cdn (0) | 2015.08.21 |
---|---|
[PHP] 클릭재킹(Clickjacking) 막기 (0) | 2015.08.20 |
[javascript] 문자열 검색 .search (0) | 2015.08.14 |
[javascript] html에서 iframe에 있는 함수 호출 (0) | 2015.08.14 |
[javascript] 팝업창 포커스 / popup focus & blur (0) | 2015.08.14 |