文字过长设置隐藏,鼠标hover时显示在title上
Posted mahmud
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文字过长设置隐藏,鼠标hover时显示在title上相关的知识,希望对你有一定的参考价值。
<td> <span class="text-content"> 1.工作内容工作内容工作内容工作内容工作内容工作内容工作内容 2.工作内容工作内容工作内容工作内容工作内容工作内容工作内容 </span> </td> css: /*表格超出隐藏*/ .ellipsis-table{table-layout:fixed;} .ellipsis-table td{width:100%;word-break:keep-all;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;} js: //内容赋值title $(‘.text-content‘).hover(function () { var value = $(this).text(); $(this).attr(‘title‘,value); });
以上是关于文字过长设置隐藏,鼠标hover时显示在title上的主要内容,如果未能解决你的问题,请参考以下文章