Bootstrapx点击问题 - 需要两次点击,有时需要3次点击

时间:2013-01-22 13:47:58

标签: javascript jquery twitter-bootstrap

我遇到了Bootstrapx clickover的问题(所有js库都已正确链接)

   $(function ()  { 
    $('.userProfile').each(function(index){
        var el=$(this);
        $.get(el.attr('data-load'),function(d){
            el.clickover({html:true,content: d}).clickover();                   
        });
    }); 

   }); 

和我的HTML

<p><a href="#" class="userProfile" rel="clickover" data-load="inc/userProfile.inc">
亚历克斯米。完成了Marc B.的任务

弹出内容

<a href="#">Alex M.</a>
<span class="label">Volunteer</span>
<button class="btn btn-primary btn-small">Follow</button>
<button class="btn btn-small" data-toggle="button" data-dismiss="clickover">Close</button>

期待获得一些帮助,

谢谢,

伊莎贝尔,

1 个答案:

答案 0 :(得分:0)

你确定你被迫使用

el.clickover({html:true,content: d}).clickover(); 

而不是

el.clickover({html:true,content: d}); 

你能在pastebin上重现吗?