Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript 없이 인쇄 버튼을 만들 수 있습니까?


예, 인쇄 버튼을 쉽게 만들고 여기에 이미지를 추가할 수 있습니다.

다음 코드를 실행하여 인쇄 버튼을 이미지로 만들 수 있습니다. 즉, 사용자가 이미지를 클릭할 때마다 인쇄 옵션이 표시됩니다 −

라이브 데모

<!DOCTYPE html>
<html>
   <body>
      <a href="javascript:window.print()"><img src="https://www.tutorialspoint.com/computer_fundamentals/images/inkjet_printer.jpg" height="50" alt="print the page"></a>
      <p>Click above to print the page.<p>
   </body>
</html>