일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 보르비스초월
- 아파치
- PHP-FPM
- 알뜰폰
- ConoHa
- 시놀로지
- jQuery
- proxmox
- 소비전력
- 스톤에이지
- Apache
- 리눅스
- 티스토리
- iptime
- 자바스크립트
- 복현오거리
- 라즈베리파이2
- 윈도우10
- centos
- SKT
- 램가스초월
- KB증권
- 킹북이초월
- 가상서버호스팅
- KB국민카드
- 알리익스프레스
- mysql
- php
- OpenWrt
- Rocky
- Today
- Total
목록iframe접근 (1)
맛집 여행 캠핑 일상 생활
[자바스크립트] 자식 iframe load 후 접근하기
[자바스크립트] 자식 iframe load 후 접근하기 자식에서 부모의 element를 접근할 때는 parent.$('#elementID') 이렇게 하면 됩니다. ▶ iframe load 이벤트var o_frame = document.getElementById('프레임ID');$(o_frame).load(function(){console.log('iframe onload');}); 부모에서 자식의 iframe 안에 있는 엘리먼트 접근은 아래 처럼 하면 됩니다.var o_frame = document.getElementById('프레임ID');$(o_frame).load(function(){var cFrame = this.contentDocument;$('#엘리먼트ID', cFrame).hide();con..
JAVASCRIPT
2018. 9. 18. 10:08