Изображение не найдено при печати документа с использованием jquery PrintThis - PullRequest
0 голосов
/ 13 сентября 2018

Я печатаю веб-страницу с помощью плагина jqueryThis.

Мы собираемся напечатать изображение и текст, но когда мы нажмем кнопку печати, все в порядке, но изображение не будет найдено на странице печати. ​​

Как я могу решить эту проблему?

enter image description here

<?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");?>

1 Ответ

0 голосов
/ 07 июля 2019

Вы должны добавить полный URL в теге example http://domain/path/image.jpg

...