次のコードがあるとします。
var style = $("<style/>")
.html("body{background:grey; color:white;} /*and more CSS style*/")
.on("load", function () {
console.log("The New style injection has finished to load!");
});
$("head").append(style);
Chrome、Safari、および Firefox ブラウザーでは、load
イベントは時間通りにトリガーされ、期待どおりに完全に機能します。しかし、Internet Explorer (任意のバージョン) では、イベント
はまったくトリガーされません!load
なぜIEで動かないのですか?
IE の解決策は何ですか (ある場合)?
IE を除くすべてのブラウザーで動作する例は、http: //jsfiddle.net/KWHyZ/2/にあります。
ありがとう。