Notice
Recent Posts
Recent Comments
«   2024/11   »
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
Archives
Today
In Total
관리 메뉴

A Joyful AI Research Journey🌳😊

JavaScript: onbeforeprint 사용해서 [다운로드] 버튼 작동하게 만들기 본문

💻Bootcamp Self-Study Revision✨/JavaScript, jQuery, Ajax

JavaScript: onbeforeprint 사용해서 [다운로드] 버튼 작동하게 만들기

yjyuwisely 2023. 4. 24. 15:13

230424 Mon, 230425 Tue

더 쉬운 방법: onclick="window.print()"도 있다.

<button onclick="window.print()">증명서 다운로드</button>


The onbeforeprint event occurs when a page is about to be printed.

The onbeforeprint event occurs before the print dialogue box opens.

아래 코드를 사용하면 [증명서 다운로드] 버튼이 작동한다.

<!DOCTYPE html>
<html>
<button onclick="printPage()">증명서 다운로드</button>

<script>
function printPage() {
  window.print();
}

window.onbeforeprint = function() {
  // Simulate Ctrl+P keypress
  var event = new KeyboardEvent('keydown', {
    key: 'p',
    ctrlKey: true
  });
  document.dispatchEvent(event);
}
</script>
</body>
</html>


참고: https://www.w3schools.com/jsref/event_onbeforeprint.asp


728x90
반응형
Comments