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.
通过 SWFobject 和 AJAX 我把视频放到某个<div>.
<div>
使用 jQuery 我试过这个:
$('#youtubepreview').html('');
然而,这并没有完全删除它 - 视频仍然保留在那里。
有任何想法吗?
SWFObject 还有一个removeSWF 方法,您可以在需要时调用。
假设 SWF 嵌入了 ID“mySwfID”:
swfobject.removeSWF("mySwfID");
这对我有用:
$("#youtubepreview object").remove();