我在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);
我错过了哪些想法?