일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- mysql
- 리눅스
- php
- 알리익스프레스
- Rocky
- OpenWrt
- 램가스초월
- 가상서버호스팅
- centos
- 윈도우10
- 스톤에이지
- 라즈베리파이2
- PHP-FPM
- 티스토리
- 아파치
- 알뜰폰
- 킹북이초월
- 복현오거리
- iptime
- 자바스크립트
- 소비전력
- jQuery
- ConoHa
- KB증권
- SKT
- proxmox
- KB국민카드
- 시놀로지
- Apache
- 보르비스초월
- Today
- Total
목록matchMedia (1)
맛집 여행 캠핑 일상 생활
자바스크립트 프린터 출력 이벤트 알아내기
자바스크립트 프린터 출력 이벤트 알아내기 javascript 로 인쇄의 시작과 종료를 catch 하는 방법니다. if(window.matchMedia) {var mediaQueryList = window.matchMedia('print');mediaQueryList.addListener(function(mql){if (mql.matches) {beforePrint();} else {afterPrint();}});}window.onbeforeprint = beforePrint;window.onafterprint = afterPrint;function beforePrint() {alert('인쇄를 시작전 입니다.');}function afterPrint() {alert('인쇄가 완료되었습니다.');}
JAVASCRIPT
2017. 4. 19. 16:08