如果页面中存在某个 css 类,我需要添加一个 css 样式表。
即编辑以下JS:
<script>
<!--
function getStylesheet() {
var currentTime = new Date().getHours();
if (0 <= currentTime&¤tTime < 5) {
document.write("<link rel='stylesheet' href='night.css' type='text/css'>");
}
if (5 <= currentTime&¤tTime < 11) {
document.write("<link rel='stylesheet' href='morning.css' type='text/css'>");
}
if (11 <= currentTime&¤tTime < 16) {
document.write("<link rel='stylesheet' href='day.css' type='text/css'>");
}
if (16 <= currentTime&¤tTime < 22) {
document.write("<link rel='stylesheet' href='evening.css' type='text/css'>");
}
}
getStylesheet();
-->
</script>
如果页面中存在 certian 类,我需要添加一个 css 文件而不是上述时间 - 即
如果 class="company" - 使用 company.css
if class="contact" - 使用contact.css
if class="enterprise" - 使用 enterprise.css
如果 class="media" - 使用 media.css
我该怎么做?