强制打开“在Chrome中打印”的详细信息/摘要标记

时间:2013-10-28 23:04:30

标签: css html5 google-chrome printing

我尝试在Chrome中打印详细信息标记的内容,但我无法强行打开它。

这就是我在我的打印CSS中所拥有的:

details, details > * { display:block !important; }

但只有在打印页面之前打开详细信息时才会显示内容。

有没有办法通过Chrome上的css print强制打开详细信息?

3 个答案:

答案 0 :(得分:2)

使用jQuery(非Opera)合理的跨浏览器解决方案......改编自https://www.tjvantoll.com/2012/06/15/detecting-print-requests-with-javascript/

// Set up before/after handlers
var beforePrint = function() {
    $("details").attr('open', '');
};
var afterPrint = function() {
    $("details").removeAttr('open');
};

// Webkit
if (window.matchMedia) {
    var mediaQueryList = window.matchMedia('print');
    mediaQueryList.addListener(function(mql) {
        if (mql.matches) {
            beforePrint();
        } else {
            afterPrint();
        }
    });
}

// IE, Firefox
window.onbeforeprint = beforePrint;
window.onafterprint = afterPrint;

答案 1 :(得分:1)

我通过使用BeforePrint和Afterprint

强制打开详细信息标记找到了解决方案
class App.Views.main extends backbone.View
el : "body"
events : 
    "click [data-auto-focus]":"autoFocus"
initialize : () ->
    # Add conditional classname based on support
    $('html').addClass( (if $.fn.details.support then 'details' else 'no-details'))
    $('details').details()

    if (window.matchMedia)
        mediaQueryList = window.matchMedia('print')
        mediaQueryList.addListener (mql) =>
            if (mql.matches)
                @beforePrint()
            else 
                @afterPrint()

    window.onbeforeprint = => @beforePrint
    window.onafterprint = => @afterPrint

render : () ->

openedDetailsBeforePrint : null

beforePrint : () ->
    console.log "before print"
    @openedDetailsBeforePrint = @$el.find('details[open], details.open')
    if ($('html').hasClass('no-details')) then @$el.find('details').addClass("open") else @$el.find('details').attr("open", "")

afterPrint : () ->
    console.log "after print"
    @$el.find('details').removeClass(".open").removeAttr("open")
    if ($('html').hasClass('no-details')) then @openedDetailsBeforePrint.addClass("open") else @openedDetailsBeforePrint.attr("open", "")


autoFocus : (e) ->
    $element = if (e.currentTarget) then $(e.currentTarget) else $(e.srcElement)
    return $($element.attr "data-auto-focus").focus()

答案 2 :(得分:-2)

对于这个特定的情况(我今天看到,但是在StackOverflow上需要时间),我认为最好的解决方案是将详细信息标记添加到 @列表中媒体 print ,类似于:

@media print {
    …
    details, details > * { display:block !important; }
}

jQuery中的一个简单方法:(已更新)

var mediaQueryList = window.matchMedia('print');
mediaQueryList.addListener( printTest );

function printTest(mql) {
    dt = $( 'details' )
    if (mql.matches) {
        dt.each( function( index ){
            b = $(this).attr('open');
            if ( !b ){
                $(this).attr('open','');
                $(this).attr('print','');
            }
         });
    } else {
        dt.each( function( index ){
            b = $(this).attr('print');
            if ( !b ){
                $(this).removeAttr('open');
                $(this).removeAttr('print');
            }
        });
    }
}

printTest 方法验证是否匹配 匹配打开已关闭详细信息元素并添加属性 print 以便关闭。
!匹配:使用 print 属性关闭详细信息元素(并删除此属性:打开并打印)


JSFiddle

中查看更多相关信息