我试图让 Jeremy Keiths 断点检查在 IE8 中工作。他的解决方案看起来像这样。
var size = window.getComputedStyle(document.body,':after').getPropertyValue('content');
我正在尝试使用 JQuery 实现相同的目标。这就是我得到的。它根本不起作用,但它说明了我所追求的。
var size = $('body:after').css('content');
这是我的 CSS
@media only screen and (min-width: 960px) {
body:after {
content: 'min960px';
display: none;
}
}