みんなIEで実行時にdivの内容を空にしようとするのにうんざりしています!!
YouTube のような新しいビデオを表示する必要があるたびに、div の内容を空にする必要があります。
のようなすべてを試しましたが、IEでは何も機能しません$('#divvideo').empty("")
。$('#divvideo').remove()
私に何ができるか教えてください。
$('#divvideo').html("");
this.$Embed = $('<embed></embed>');
this.$Embed.attr({ src: src.href });
this.$Embed.attr({ width: "420" });
this.$Embed.attr({ height: "366" });
this.$Embed.attr({ type: "video/x-ms-wmv-plugin" });
this.$Embed.attr({ pluginurl: "http://www.microsoft.com/windows/windowsmedia" });
this.$Embed.attr({ allowchangedisplaysize: "1" });
this.$Embed.attr({ autosize: "1" });
this.$Embed.attr({ displaysize: "1" });
this.$Embed.attr({ showcontrols: "1" });
this.$Embed.attr({ showstatusbar: "1" });
this.$Embed.attr({ autorewind: "1" });
this.$Embed.attr({ autostart: "1" });
$('#divvideo').append(this.$Embed);