我如何获取 twitter 引导参数值的弹出框的 this 属性,就像我需要获取列表项属性,即要在引导弹出框标题中使用的 data-boothtype 一样?数据标题是不够的
HTML
<li class="booth" data-boothnumber="46" data-boothtype="prime" style="left: 240px; top: 30px;">46</li>
JS
$('.booth').popover({title: this.data-boothtype + "'s Booth", content: "test", placement: "right", callback:function(){ console.log(this)}});
PS:回调函数是使用twitter bootstrap创建工具提示/弹出框后回调函数的测试单元?
$.fn.popover.Constructor.prototype.show = function () {
tmp.call(this);
if (this.options.callback) {
this.options.callback();
}
}
编辑 确定这里缩小:http: //jsfiddle.net/tHHQ6/