我有几个按钮,我需要一个popover。
我想要这样:
当我的用户点击其中一个,我想要其他人被隐藏。所以只显示一个popover
检查并帮助我纠正这个例子plz:
我想要这样:
当我的用户点击其中一个,我想要其他人被隐藏。所以只显示一个popover
检查并帮助我纠正这个例子plz:
var mycontent='<div class="btn-group"> <button class="btn">Left</button> <button class="btn">Middle</button> <button class="btn">Right</button> </div>'
$('.btn').popover({ html: true,content:mycontent,trigger: 'manual' }).click(function(e) { $(this).popover('toggle'); e.stopPropagation(); }); $('html').click(function(e) { $('.btn').popover('hide'); });
我的html:
<ul> <li> <a href="#" class="btn" data-toggle="popover" data-placement="bottom" title="" >Popover</a> </li> <li> <a href="#" class="btn" data-toggle="popover" data-placement="bottom" title="" >Popover</a> </li> </ul>
$('.btn').click(function(e) { $('.btn').popover('hide'); });
但是通过在每个按钮上点击两次就会出错