码迷,mamicode.com
首页 > 其他好文 > 详细

EasyUI 鼠标经过 显示气泡一例

时间:2015-03-19 20:07:59      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

$(function(){
                                $(‘#contacts‘).tooltip({
                                    position: ‘bottom‘,
                                    content: ‘<c:forEach items="${record.contacts}" var="staff">${staff.name}-${staff.jobRole }-${staff.tel }<br></c:forEach>‘,
                                    onShow: function(){
                                        $(this).tooltip(‘tip‘).css({
                                            backgroundColor: ‘white‘,
                                            borderColor: ‘black‘
                                        });
                                        var t = $(this);
                                        t.tooltip(‘tip‘).unbind().bind(‘mouseenter‘, function(){
                                            t.tooltip(‘show‘);
                                        }).bind(‘mouseleave‘, function(){
                                            t.tooltip(‘hide‘);
                                        });
                                    }
                                });
                            });

 

EasyUI 鼠标经过 显示气泡一例

标签:

原文地址:http://www.cnblogs.com/flying607/p/4351414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!