“html à pdf jQuery” Réponses codées

html à pdf jQuery

var pdf = new jsPDF('p', 'pt', 'a4');
pdf.addHTML($("#sectionId").get(0), 15, 15, options, function () {
  pdf.save('@(Html.Raw("textdoc.pdf")'));
  return true;
});
Micheal Robbie

Table HTML à PDF jQuery

<body>

	<div id="printThis">
		<div class="container">
			<br><br>
			<center>lorem</center>
			<center>
				<table>
					<tr>
						<th>Id</th>
						<th>Name</th>
						<th>someth</th>
						<th>woring</th>
					</tr>
					<tr>
						<td>1</td>
						<td>jerry</td>
						<td>Account</td>
						<td>berlin</td>
					</tr>
					<tr>
						<td>1</td>
						<td>jerry</td>
						<td>Account</td>
						<td>berlin</td>
					</tr>
				</table>
			</center>
		</div>
	</div>

<center>
	<input type="submit" value="Print" id="PrintBtn"  name="">
</center>
    <script>
    
     $('#printBtn').click(function () {
            var openWindow = window.open("", "", "_blank");
            openWindow.document.write($('#printThis').parent().html());
            openWindow.document.write('<style>' + $('style').html() + '</style>');
            openWindow.document.close();
            openWindow.focus();
            openWindow.print();
            // openWindow.close();
            setTimeout(function () {
                openWindow.close();
            }, 1000)

        })
    </script>

</body>
Lu Yote Mar

Réponses similaires à “html à pdf jQuery”

Questions similaires à “html à pdf jQuery”

Plus de réponses similaires à “html à pdf jQuery” dans HTML

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code