我有下一个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); }