我在我的 html 文档的头部运行了一个脚本,它适用于除 Internet Explorer 之外的所有浏览器。在 Opera、Safari、Chrome、Firefox、Internet Explorer 中测试。
我的代码如下:
<html>
<head>
<script type = "text/javascript">
var date = new Date();
var month = date.getMonth() + 1;
if (month >= 3 && month <= 5)
{
var NewScript = document.createElement("script");
NewScript.type = "text/javascript";
NewScript.src = "source1.js";
var NewStyles = document.createElement("link");
NewStyles.rel = "stylesheet";
NewStyles.type = "text/css";
NewStyles.href = "css1.css";
document.head.appendChild(NewScript);
document.head.appendChild(NewStyles);
}
else
{
var NewScript = document.createElement("script");
NewScript.type = "text/javascript";
NewScript.src = "source2.js";
var NewStyles = document.createElement("link");
NewStyles.rel = "stylesheet";
NewStyles.type = "text/css";
NewStyles.href = "css2.css";
document.head.appendChild(NewScript);
document.head.appendChild(NewStyles);
}
</script>
</head>
<body>
<!-- MY CONTENT GOES HERE -->
</body>
</html>
我不确定是不是在 IE 中不起作用的 document.createElement 或 document.head.appendChild。如前所述,它适用于我测试过的所有其他浏览器。非常感谢您提供帮助,因为我将继续自己寻找问题/解决方案。谢谢!