在我的网站上,我有一张全球样式表。在我的网站的一个特定页面上,我想使用另一个工作表,所以在这个页面加载后,我删除这样的全局工作表:
$(document).ready(function() {
//remove all existing css
$('link[rel=stylesheet]').remove();
//new specific css
$('head').append('<link id="cuty" rel="stylesheet" href="SpecificCss.css" type="text/css" />');
//how can I force the page to use the new css ??
//have done some researches and and tried this to reload the new css, but none worked
// try one :
$("cuty").attr("href",$(this).attr('rel'));
//try two
document.styleSheets.reload();
});
有什么想法吗?