Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过 ajax 加载 flash 应用程序,后来我想完全卸载它。这个操作可以重复几次。如何做到这一点?
如果你使用 swfobject,你可以使用 removeSWF 方法来做到这一点。来自 SWFObject 文档:
从您的网页中删除 SWF。专为安全(仅在加载 SWF 后删除它,以避免损坏的引用)和完全(使引用无效以避免内存泄漏)而构建。
http://code.google.com/p/swfobject/wiki/api
http://api.jquery.com/remove/
所以基本上删除 div
$('#divId').remove();
并重新创建 div 的空白版本