print() not working on opera browser

后端 未结 4 753
眼角桃花
眼角桃花 2021-01-07 04:21

I am trying to open a print dialog box in Opera browser using javascript. The print() is working fine in all browsers but in opera it doesn\'t work. My p

4条回答
  •  悲&欢浪女
    2021-01-07 04:46

    I solved this issue via jQuery with this very simple function instead ofissue the print one which you can replace on your code and will satisfy your needs for Opera and the rest of the browsers.

      $(document).ready(function(){
        if($.browser.opera){
         window.print();
        }
        else printWindow.print();
      });
    

提交回复
热议问题