Я печатаю веб-страницу с помощью плагина jqueryThis.
Мы собираемся напечатать изображение и текст, но когда мы нажмем кнопку печати, все в порядке, но изображение не будет найдено на странице печати.
Как я могу решить эту проблему?
<?php include("header.php");?>
<br /><br />
<li><a href="" onClick="return print_student()" >Print</a></li>
<div class="container " id="print_this" style=" color:black; ">
<div class="container">
<img src='images/as.jpg' width='50' height='50' />
</div>
<div class="container">Mohsin Mushtaq</div>
</div>
<script type="text/javascript">
function print_student(){
$('#print_this').printThis({
debug: false,
printContainer:false,
importCSS: true,
loadCSS: "http://localhost/erp/css/bootstrap.min.css",
canvas: true,
base: true,
formValues: true,
});
return false;
}
</script>
<?php include("footer.php");?>