Answers:
为此,您可以使用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>
如果使用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));
试试这个,
.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; }
好吧,“文本溢出:省略号”对我有用,但是即使我的限制基于“宽度”,我也需要一种可以应用于行的解决方案(以“高度”代替“宽度”),我做了这个脚本:
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)
})
我不知道这是否是满足性能需求的最佳做法,但为我工作。
非常感谢@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);
}
}