我正在使用 Greasemonkey 和 JQuerys #css 方法将 css 样式添加到页面。到目前为止的脚本:
// ==UserScript==
// @name www.al-anon.dk Remove inline scroll so that page content prints properly
// @namespace http://userscripts.org/users/103819
// @description remove scroll from al-anon pages
// @include http://al-anon.dk/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
// ==/UserScript==
$('#framen').css({'height': 'auto', width: 'auto'});
$('#menu').css({ 'display': 'none'});
现在我的问题是如何仅将最后一条规则应用于@media print?
换句话说:如果这是干净的 CSS,我将使用以下语法:
@media print {
/* style sheet for print goes here */
}
但是如何使用 Greasemonkey/JQuery 来选择它