首页 > 网站 > WEB开发 > 正文

bootstrap插件调用Popover和tooltip插件

2024-04-27 15:09:02
字体:
来源:转载
供稿:网友

自定义窗口中显示的内容

初始化时

$('[data-toggle="tooltip"]').tooltip({   

             html : true,  // html打开,才能识别html中的标签

             title: function() {  

                var ac_id = $(this).attr('ac_id');

                return $("#popover-alert-html-"+ac_id).html();  

             },

             trigger : 'click',  // trigger属性,用于指定,触发该事件的动作(fouce,click,hover,manual)

}); 

地址:

http://www.runoob.com/bootstrap/bootstrap-tooltip-plugin.html


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表