我在 html 弹出窗口上播放了 youtube 视频,我想删除弹出窗口,包括单击删除弹出按钮时的 youtube。
$(".ei-popup-overlay").remove();
但它只删除了 html 层,并没有删除 youtube 视频。
html弹出窗口,
<div class="ei-popup-overlay">
<div class="ei-popup-content-holder">
<a href="#" class="ei-button-popup-close hide-text">x</a>
<div class="ei-popup-content">
<iframe src="http://www.youtube.com/embed/c-gARuGBSdw?autoplay=1" frameborder="0" width="800" height="490"></iframe> </div>
</div>
</div>
jQuery,
(function($){
$.fn.extend({
video_player: function(options) {
var defaults = {
button: null,
}
var options = $.extend(defaults, options);
var o = options;
var $this = this;
// Attach click function.
return this.click(function(){
...
$.ajax({
type: "GET",
url: "popup.php?url=" + request,
dataType: "html",
success: function (html) {
// Prepend html into the target element.
$('body').prepend(html);
},
complete: function () {
$(".ei-button-popup-close").click(function(){
$(".ei-popup-overlay").remove();
return false;
});
}
});
return false;
});
}
});
})(jQuery);
有什么我错过的想法吗?