0

我有不同样式的网页,用户可以随时更改和构建。我有此代码可与浏览器 IE-9+、chrome、FF、safari 一起使用。

if($("#customCss").length>0)
     $("#customCss").empty();

$("#customCss").text(css_txt );
$('head').append('<style type="text/css" id="customCss"> ' + css_txt + '</style>');

我想让网站适合 IE-7,8。但是此代码不适用于 IE-7,8。我收到此错误代码:

Microsoft JScript runtime error: Unexpected call to method or property access.

在这个 jquery func jquery 中:

append: function () {
            return this.domManip(arguments, true, function (elem) {
                if (this.nodeType === 1) {
                    this.appendChild(elem);
                }
            });
        },

我也试过这个,但没有运气:

document.getElementById("customCss").innerHTML=css_txt;

知道为什么吗?

4

1 回答 1

0

存储对link标记的引用,然后将其修改href为新脚本(如果它是外部脚本)。如果它是内部的,请尝试删除旧的,.remove().append()<body>.

于 2013-02-17T13:04:17.623 回答