Skip to content

Instantly share code, notes, and snippets.

@RobertWang
Created December 25, 2012 08:49
Show Gist options
  • Save RobertWang/4372318 to your computer and use it in GitHub Desktop.
Save RobertWang/4372318 to your computer and use it in GitHub Desktop.
使用chrome浏览oschina.net页面时,收藏页面的快捷方法。把下面的代码添加到收藏夹去,看到某篇文章想收藏下来,就利用chrome的打印功能,将页面打印成pdf文档。
javascript:(function(){ var rm=['#OSC_Banner','#OSC_NavigatorMenu','#toolbar_wrapper','.ProjectOfNews','.NewsPrevAndNext','.RelatedNews','.HomeHotNews','.Comments','.CommentForm','.right', '#OSC_Banner2','#OSC_Topbar','.QuestionRelations','.SameQuestions','.ask_toolbar','.QuestionReplies','.AnswerForm']; $(rm).each(function(i, n){ $(n).remove(); }); var preTitle = ((new Date()).toISOString()).split('T')[0]; $('#OSC_Footer').css('padding-bottom','0px'); $('head title').text(preTitle+'_'+$('head title').text()); window.print(); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment