CSDN文章一键打印、输出PDF

under 默认分类  tag     Published on August 3rd , 2020 at 09:50 pm

一、功能及修改方法

使用方法:按“F12”进入开发者工具,将以下js复制到 console,回车即可一键打印。
支持浏览器:Edge
功能:

1、自动“展开阅读全文”
2、删除顶栏、侧栏、相关文章展示、浏览信息、广告、点赞等多余信息。真正的全清爽模式。
3、自动输出打印预览

(function(){
    'use strict';
    var articleBox = $("div.article_content");
    articleBox.removeAttr("style");
    $("#btn-readmore").parent().remove();
    $("#side").remove();
    $("#comment_title, #comment_list, #comment_bar, #comment_form, .announce, #ad_cen, #ad_bot").remove();
    $(".nav_top_2011, #header, #navigator").remove();
    $(".csdn-side-toolbar,.template-box,.reward-user-box").remove();
    $(".p4course_target, .comment-box, .recommend-box, #csdn-toolbar, #tool-box,#dmp_ad_58, .more-toolbox, .article-info-box, .btn-readmore").remove();
    $("aside").remove();
    $(".tool-box").remove();
    $("main").css('display','content'); 
    $("main").css('float','left'); 
    $("#mainBox").css('width','100%');        
    $(".main_father.clearfix.d-flex.justify-content-center").css("width","100%");
    window.print();
})();

本文由simyng创作, 采用知识共享署名4.0 国际许可协议进行许可,转载前请务必署名
  文章最后更新时间为:August 3rd , 2020 at 01:50 pm