일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 리눅스
- 스톤에이지
- 윈도우10
- KB증권
- 알뜰폰
- 아파치
- 소비전력
- proxmox
- 복현오거리
- php
- centos
- jQuery
- 티스토리
- Apache
- 가상서버호스팅
- 자바스크립트
- KB국민카드
- ConoHa
- 보르비스초월
- mysql
- PHP-FPM
- Rocky
- 램가스초월
- 라즈베리파이2
- 시놀로지
- SKT
- OpenWrt
- 알리익스프레스
- 킹북이초월
- iptime
- Today
- Total
목록window.postMessage (1)
맛집 여행 캠핑 일상 생활
JAVASCRIPT window message 전달
JAVASCRIPT window message 전달 자기 자신의 window 에도 메시지를 전달할 수 있고 iframe 과 부모 페이지 사이에도 메시지로 데이터 전송이 가능하다. ▶ 셀프 윈도우 메시지 처리 window.addEventListener("message", receiveMessage, false);function receiveMessage(event) {alert('message : ' + event.data.msg);}window.postMessage({msg:'Hello world!'}, "http://" + window.location.hostname); ▶부모 자식간 메시지 처리 부모 -> 자식// iframewindow.addEventListener("message", receive..
JAVASCRIPT
2016. 10. 28. 15:26