在Bootstrap中弹出窗口?

时间:2014-03-14 19:41:07

标签: jquery twitter-bootstrap twitter-bootstrap-3

当我将光标移动到此website中的任何文本框中时,我会看到一个弹出窗口。 如何在bootstrap中创建它们?

1 个答案:

答案 0 :(得分:0)

看起来这是使用Bootstrap的Popover

完成的

这是他们的代码:

$(function() {

  // Set up the help menus.
  var help_divs = $('.control-group').filter('div[id]').each(function() {
    var id = $(this).attr('id');
    var placement = 'left';
    if (id.indexOf('server_') == 0) {
      placement = 'right';
    }
    $(this).popover({
      placement: placement,
      trigger: 'hover'});
  });

或者,有 JQuery UI -

具体 -

Tooltips