我有一个 jQuery 脚本来找出浏览器的分辨率,然后更改它的 css。
if ((screen.width>=1024) && (screen.height>=768))
{
alert('Screen size: 1024x768 or larger');
$("link[rel=stylesheet]:not(:first)").attr({href : "detect1024.css"});
}
else
{
alert('Screen size: less than 1024x768, 800x600 maybe?');
$("link[rel=stylesheet]:not(:first)").attr({href : "detect800.css"});
}
});
你能帮我了解它的实际功能吗?
是什么:not(:first)
意思?请解释。
谢谢。