Мои CSS пропали после печати моего модального окна с использованием prinThis. js - PullRequest
1 голос
/ 18 марта 2020

Я использую модал, и я хочу напечатать его, но когда я пытаюсь распечатать его, используя printThis. js его стиль / Css удалить.

Как это исправить.

Код и пример вывода приведены ниже:

<script>

    function PDFPrint() {

        $("#printthispdf").printThis({
            importCSS: true,
            importStyle: true,
            loadCSS: "/Content/SnapCSS/printpdf.css",
            printContainer: true,
            pageTitle: "PDF Export",
            removeInline: false,
            printDelay: 0,
            header: null,
            formValues: true,
            copyTagClasses: true, 
        });


    }
</script>

<div id="myModal" class="modal fade" role="dialog">
     <div class="modal-body" id="printthispdf">
//code here
     </div>
</div>

enter image description here enter image description here

...