Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- JavaScript
- 코드이그나이터
- 공모주 청약 일정
- 맥
- 제이쿼리
- java
- 6월 공모주 청약 일정
- Stock
- jquery
- Stock ipo
- 7월 공모주 청약 일정
- Eclipse
- 오라클
- html
- 자바스크립트
- 주식
- 공모주 청약
- 주식 청약
- MYSQL
- 공모주
- 리눅스
- php
- css
- IPO
- Oracle
- 자바
- codeigniter
- linux
- SQL
- 주식 청약 일정
Archives
- Today
- Total
개발자의 끄적끄적
[html/css] html iframe load complete check example / html iframe 로드 완료 여부 확인 방법 본문
개발/html & css
[html/css] html iframe load complete check example / html iframe 로드 완료 여부 확인 방법
효벨 2021. 9. 10. 01:00728x90
반응형
[html/css] html iframe load complete check example / html iframe 로드 완료 여부 확인 방법
html 에서
iframe 을 이용해서
특정 사이트의 내용을 불러와서 표시해야 하는 경우
해당 내용이 로드 되었는지
확인해야 하는 경우가 있습니다.
그럴때는 아래 나와있는 내용처럼
readyState 를 이용하시면 됩니다.
아래와 같이 text_frame 라는 아이디를 가지는 iframe 이 있다고 가정하고,
<iframe src="IFRAME_SRC" id="test_frame"></iframe>
위 iframe 이 정상적으로 로드 되었는지 확인하려면
아래와 같이 스크립트를 작성하시면 됩니다.
<script>
$( document ).ready(function() {
var frame = document.getElementById("test_frame");
if( frame.readyState == "complete" ) {
// to do
}
});
</script>
frame.readyState 가 complete 면
정상적으로 로드가 된것으로 보시면 됩니다!
참고들 하세요!
반응형
'개발 > html & css' 카테고리의 다른 글
[html/css] html iframe sandbox allow modals error 해결 방법 (0) | 2021.09.10 |
---|---|
[html/css] html iframe allow popups error 해결 방법 (0) | 2021.09.10 |
[html/css] html a tag text-decoration-line example / html a태그 밑줄 없애는 방법 (0) | 2021.08.31 |
[html/css] html form enter submit disable example / html 폼 엔터 submit 방지하는 방법 (0) | 2021.08.31 |
[html/css] css border-radius example / css로 특정 영역 동그랗게 만드는 방법 (0) | 2021.08.30 |
Comments