gpt4 book ai didi

jquery - 动态加载样式表以在 IE 中打印

转载 作者:行者123 更新时间:2023-12-01 08:26:41 26 4
gpt4 key购买 nike

我有以下代码来加载新样式表以打印灯箱对话框:

    $styleUrl = '../Content/styles/icis.dashboard.colorbox.print.css';
if (document.createStyleSheet) {
document.createStyleSheet($styleUrl);
}
else {
$('head').append('<link rel="stylesheet" type="text/css" href="../Content/styles/icis.dashboard.colorbox.print.css" media="print">');
}

如何限制在 IE 特定代码中打印的媒体类型?

最佳答案

我相信这会起作用:

if (document.createStyleSheet) {
var ieStyleSheet = document.createStyleSheet($styleUrl);
ieStyleSheet.media = "print";
}

关于jquery - 动态加载样式表以在 IE 中打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3265215/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com