reload embedded swf in html page in IE
问题 I have a swf file embedded in a html page. I want to reload the swf file without refreshing the page. There is a same problem asked here: reload/ reset embedded swf on click And I tried the accepted answer and it works in chrome: var obj = $("object#flash_99674493"); obj.html(obj.html()); But it seems it doesn't work in IE. How to make it work in IE? 回答1: If your .swf is embedded with <object> , use data property: document.getElementById('flash_99674493').data += ''; For ones embedded with