在我的例子中,我有时还希望加载的 CSS 替换以前以这种方式加载的 CSS。为此,我在开头放置一个注释,比如“/* Flag this ID = 102 */”,然后我可以这样做:
// Remove old style
$("head").children().each(function(index, ele) {
if (ele.innerHTML && ele.innerHTML.substring(0, 30).match(/\/\* Flag this ID=102 \*\//)) {
$(ele).remove();
return false; // Stop iterating since we removed something
}
});