我创建了一个带回调函数的popover。 我希望该函数将解决popover并使用它做一些事情。 例如,我有两种类型的“a类”和“b类”。 我希望当我触发popover类时,我会收到警告“a”,当我触发popover class b时,我会收到警告“b”。 这是我到目前为止所做的......
//create callback for popover
var tmp=$.fn.popover.Constructor.prototype.show;
$.fn.popover.Constructor.prototype.show=function(){
tmp.call(this);
if(this.options.callback){
this.options.callback();
}
}
//create the popover
$("#some_div").popover({
html:true,
content:"<div class='a'>I want that now will jump alert box that will state the class name of this div</div>",
trigger: "hover",
callback:function(){
alert("all I managed to do is output hello");
}
});
感谢帮助者