我正在使用省略号截断文本并在工具提示上显示整个文本。如果文本溢出,则仅显示工具提示。工具提示在 Chrome 中看起来不错,但在 IE 和 Firefox 中却不行。在 IE 中,工具提示文本也会被截断,而在 Firefox 中,工具提示本身也会被截断。
<div class="card">
<p>From:</p>
<p> Dark Angel </p>
<p class="ellipsis"> QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQAAAAAA
New york, US<p>
<div>
CSS:
.card {
height:416px;
width:280px;
display:block;
border: 1px solid black;
}
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
}
jQuery:
$('p.ellipsis').bind('mouseenter', function () {
var $this = $(this);
if (this.offsetWidth < this.scrollWidth && !$this.attr('title'))
$this.attr('title', $this.text());