/* * 打印预览或另存为PDF功能,需要依赖: * ../plugin/printThis.js */ ;(function ( global, factory ) { 'use strict'; if ( typeof define !== 'undefined' && define.amd ) { // export as AMD... define( ['jquery','GooFlow'], factory ); } else if ( typeof module !== 'undefined' && module.exports ) { // ...or as browserify factory( require('jquery'), require('GooFlow') ); }else factory( global.$, global.GooFlow ); }( typeof window !== 'undefined' ? window : this, function ( $,GooFlow ) { if(GooFlow.prototype.print && typeof GooFlow.prototype.print==='function'){ return;//防止多次载入 } /* * printThis v1.12.2 * @desc Printing plug-in for jQuery * @author Jason Day * 精简版 only for GooFlow */ (function($) { function appendContent($el, content) { if (!content) return; // Simple test for a jQuery element $el.append(content.jquery ? content.clone() : content); } function appendBody($body, $element, opt) { // Clone for safety and convenience // Calls clone(withDataAndEvents = true) to copy form values. var $content = $element.clone(); if (opt.printContainer) { // grab $.selector as container $content.appendTo($body); } else { // otherwise just print interior elements of container $content.each(function() { $(this).children().appendTo($body) }); } } var opt; $.fn.printThis = function(options) { opt = $.extend({}, $.fn.printThis.defaults, options); var $element = this instanceof jQuery ? this : $(this); var strFrameName = "printThis-" + (new Date()).getTime(); if (window.location.hostname !== document.domain && navigator.userAgent.match(/msie/i)) { // Ugly IE hacks due to IE not inheriting document.domain from parent // checks if document.domain is set by comparing the host name against document.domain var iframeSrc = 'javascript:document.write("")'; var printI = document.createElement('iframe'); printI.name = "printIframe"; printI.id = strFrameName; printI.className = "MSIE"; document.body.appendChild(printI); printI.src = iframeSrc; } else { // other browsers inherit document.domain, and IE works if document.domain is not explicitly set var $frame = $("