I have two CSS files a.css and b.css
How to use JS statements to control the import into the page according to different conditions?
if(xxx){ document.write("<link href='a.css' ..... />");}else{ document.write("<link href='b.css' ..... />");}