css – 仅在省略号处于活动状态时显示工具提示

前端之家收集整理的这篇文章主要介绍了css – 仅在省略号处于活动状态时显示工具提示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有下一个div:
<div class="div-class" style="width:158px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;" title=<%=myDesc%>

如何在省略号处于活动状态时显示工具提示

我找到了这个功能

function isEllipsisActive(e) {
     return (e.offsetWidth < e.scrollWidth);
}

但我不知道如何使用它知道我使用jsp和struts

解决方法

尝试这样的事情:

Working DEMO
Working DEMO – with tooltip

$(function() {
    $('div').each(function(i) {

         if (isEllipsisActive(this))
            //Enable tooltip 
         else
            //Disable tooltip
    });
});

function isEllipsisActive(e) {
     return (e.offsetWidth < e.scrollWidth);
}
原文链接:https://www.f2er.com/css/214796.html

猜你在找的CSS相关文章