打印

// 打印
    $scope.showPrint = false; //打印内容的显示状态
    $scope.printFn = function(){
        $scope.showPrint = true;
        var obj = angular.element('#print');
        var newWindow = window.open("订单打印","_blank");
        var docStr = obj.html();
        newWindow.document.write(docStr);
        newWindow.document.close();
        newWindow.print();
        newWindow.close();
        $scope.showPrint = false;
    }

<!-- 打印内容页面 -->
    <div id="print" ng-show="showPrint" style="width: 100%;">
        hello world! 这是打印页面内容
    </div>

 

posted @ 2018-08-06 14:23  青芒灬  阅读(139)  评论(0编辑  收藏  举报