“Window.Print Div spesifik” Kode Jawaban

Window.Print A Div

@media print {
  body * {
    visibility: hidden;
  }
  #section-to-print, #section-to-print * {
    visibility: visible;
  }
  #section-to-print {
    position: absolute;
    left: 0;
    top: 0;
  }
}
Vivacious Vendace

Window.Print Div

// It's really that simple. Make sure the dimensions of 'elem' 
// fit the width of the PDF layout you're looking for.
// FYI: IE, Edge, Chrome, Firefox, etc. all have different dimensions when 
// they print.
function PrintElem(elem: HTMLElement)
{
    var mywindow = window.open('', 'PRINT', 'height=400,width=600');

    mywindow.document.write(elem.innerHTML);

    mywindow.document.close(); // necessary for IE >= 10
    mywindow.focus(); // necessary for IE >= 10*/

    mywindow.print();
  	setTimeout(() => {
        // Without the timeout, the window seems to close immediately.
    	mywindow.close();    	
    }, 250);
}
DeuxAlpha

Window.Print Div spesifik

$('#divID')[0].contentWindow.print();
Graceful Gerenuk

Jawaban yang mirip dengan “Window.Print Div spesifik”

Pertanyaan yang mirip dengan “Window.Print Div spesifik”

Lebih banyak jawaban terkait untuk “Window.Print Div spesifik” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya