我正在使用媒体查询加载我的移动唯一 CSS,例如
<link rel="stylesheet" type="text/css" media="only screen and (max-device-width: 480px)" href="/includes/css/mobile.css" />
但除了这些 CSS 更改之外,我还需要重新排序部分 HTML,例如
$('#moveOne').after($('#theOther');
如果浏览器确实加载了 mobile.css,我只希望执行此操作。所以我想在 mobile.css 中添加一些奇怪的 CSS 值,然后像这样检查它的值
if($'#notVisible').css('color') == 'red') {
$('#moveOne').after($('#theOther');
}
有没有更好的方法来做到这一点?