swfobject调用视频后如何彻底删除Flash视频
通过 SWFobject 和 AJAX,我将视频放入某个
中。使用 jQuery 我尝试了这个:
$('#youtubepreview').html('');
但是这根本没有删除它 - 视频仍然保留在那里。
有什么想法吗?
Via SWFobject and AJAX I put in a video to a certain <div>
.
Using jQuery I tried this:
$('#youtubepreview').html('');
However that didn't remove it at all - the video still stayed right there.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SWFObject 还有一个可以调用的 removeSWF 方法如果需要的话。
假设 SWF 嵌入了 ID“mySwfID”:
SWFObject also has a removeSWF method you can invoke if needed.
Assuming the SWF was embedded with the ID "mySwfID":
这对我有用:
This worked for me: