更新: Firefox 7(2011年9月27日发布)text-overflow: ellipsis
现在已受支持。好极了!我的原始答案是历史记录。
Justin Maxwell具有跨浏览器CSS解决方案。但是它的缺点是不允许在Firefox中选择文本。在Matt Snider的博客上查看其来宾帖子,以获取有关其工作原理的完整详细信息。
请注意,此技术还可以防止使用innerHTML
Firefox中的属性更新JavaScript中节点的内容。解决方法请参阅本文结尾。
的CSS
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-moz-binding: url('assets/xml/ellipsis.xml#ellipsis');
}
ellipsis.xml
文件内容
<?xml version="1.0"?>
<bindings
xmlns="http://www.mozilla.org/xbl"
xmlns:xbl="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
<binding id="ellipsis">
<content>
<xul:window>
<xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
</xul:window>
</content>
</binding>
</bindings>
更新节点内容
要以可在Firefox中运行的方式更新节点的内容,请使用以下命令:
var replaceEllipsis(node, content) {
node.innerHTML = content;
// use your favorite framework to detect the gecko browser
if (YAHOO.env.ua.gecko) {
var pnode = node.parentNode,
newNode = node.cloneNode(true);
pnode.replaceChild(newNode, node);
}
};
有关其工作原理的说明,请参见Matt Snider的帖子。