如何显示跨度中具有隐藏溢出的点(“ ...”)?


166

我的CSS:

#content_right_head span
{
  display:inline-block;
  width:180px;
  overflow:hidden !important;
}

现在显示内容

但是我想展示像内容一样的 内容...

我需要在内容后面显示点。内容是动态地来自数据库。

Answers:


382

为此,您可以使用text-overflow: ellipsis;属性。这样写

span {
    display: inline-block;
    width: 180px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}
<span>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book</span>

JSFiddle


4
我建议将“宽度”更改为“最大宽度”
阿米尔·莫格

4
响应式布局又如何呢?我的宽度不固定,最大宽度也不固定。
Jp_

1
现在如何使用onclick扩展此内容?
Ankush Rishi

2
这在IE11和firefox中不起作用。有什么好的解决方案吗?
techie_questie

19

如果使用text-overflow:省略号,浏览器将尽可能显示该容器中的内容。但是,如果要指定点前的字母数或去除一些内容并添加点,则可以使用以下功能。

function add3Dots(string, limit)
{
  var dots = "...";
  if(string.length > limit)
  {
    // you can also use substr instead of substring
    string = string.substring(0,limit) + dots;
  }

    return string;
}

add3Dots("Hello World",9);

输出

Hello Wor...

看到它在这里行动

function add3Dots(string, limit)
{
  var dots = "...";
  if(string.length > limit)
  {
    // you can also use substr instead of substring
    string = string.substring(0,limit) + dots;
  }

    return string;
}



console.log(add3Dots("Hello, how are you doing today?", 10));


14

我认为您正在寻找 text-overflow: ellipsiswhite-space: nowrap

在这里查看更多详细信息


12

试试这个,

.truncate {
    display:inline-block;
    width:180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate类添加到您的元素。


编辑

上述解决方案不适用于所有浏览器。您可以尝试使用具有跨浏览器支持的jQuery插件。

(function ($) {
    $.fn.ellipsis = function () {
        return this.eachAsync({
            delay: 100,
            bulk: 0,
            loop: function (index) {
                var el = $(this);

                if (el.data("fullText") !== undefined) {
                    el.html(el.data("fullText"));
                } else {
                    el.data("fullText", el.html());
                }

                if (el.css("overflow") == "hidden") {
                    var text = el.html();
                    var t = $(this.cloneNode(true))
                                        .hide()
                                        .css('position', 'absolute')
                                        .css('overflow', 'visible')
                                        .width('auto')
                                        .height(el.height())
                                        ;

                    el.after(t);

                    function width() { return t.width() > el.width(); };

                    var func = width;
                    while (text.length > 0 && width()) {
                        text = text.substr(0, text.length - text.length * 25 / 100);
                        t.html(text + "...");
                    }

                    el.html(t.html());
                    t.remove();
                }
            }
        });
    };
})(jQuery);

怎么打电话,

$("#content_right_head span").ellipsis();

width属性可以是100%。我认为这样更好: .truncate { display:inline-block; width:100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
mahdi

4

好吧,“文本溢出:省略号”对我有用,但是即使我的限制基于“宽度”,我也需要一种可以应用于行的解决方案(以“高度”代替“宽度”),我做了这个脚本:

function listLimit (elm, line){
    var maxHeight = parseInt(elm.css('line-Height'))*line;

    while(elm.height() > maxHeight){
        var text = elm.text();
        elm.text(text.substring(0,text.length-10)).text(elm.text()+'...');
    }
}

例如,当我必须确保我的h3只有2行时,我会这样做:

$('h3').each(function(){
   listLimit ($(this), 2)
})

我不知道这是否是满足性能需求的最佳做法,但为我工作。


2

您可以尝试以下方法:

.classname{
    width:250px;
    overflow:hidden;
    text-overflow:ellipsis;
}


0
 var tooLong = document.getElementById("longText").value;
    if (tooLong.length() > 18){
        $('#longText').css('text-overflow', 'ellipsis');
    }

-3

非常感谢@sandeep的回答。

我的问题是我想用鼠标单击显示/隐藏范围内的文本。因此,默认情况下会显示带点的短文本,并通过单击出现长文本。再次单击将隐藏该长文本,并再次显示短文本。

很容易做:只需使用text-overflow:省略号添加/删除类。

HTML:

<span class="spanShortText cursorPointer"  onclick="fInventoryShippingReceiving.ShowHideTextOnSpan(this);">Some really long description here</span>

CSS(与@sandeep相同,添加了.cursorPointer)

.spanShortText {
  display: inline-block;
  width: 100px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.cursorPointer {
  cursor: pointer;
}

jQuery部分-基本上只是删除/添加类cSpanShortText。

  function ShowHideTextOnSpan(element) {
    var cSpanShortText = 'spanShortText';
    var $el = $(element);
    if ($el.hasClass(cSpanShortText)) {
      $el.removeClass(cSpanShortText)
    } else {
      $el.addClass(cSpanShortText);
    }
  }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.