所以我想替换一个页面上的 3 个 css 文件,在某些页面上可能有第 4 个文件......在阅读之后,我有这个:
$("link").each(function(index) {
switch (index) {
case 1: $this.attr("href","css1.css");
break;
case 2: $this.attr("href","css2.css");
break;
case 3: $this.attr("href","css3.css");
break;
case 4: $this.attr("href","css4.css");
break;
}
});
不幸的是,这不起作用。我觉得我用错了“这个”,但我真的不知道。