当我将光标移动到此website中的任何文本框中时,我会看到一个弹出窗口。 如何在bootstrap中创建它们?
答案 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 -
具体 -