JavaScript 在 n 个字符后修剪
我有一个动态显示名称的 HTML 页面。现在此名称 (FN LN) 最多可达 240 个字符。但在 UI 方面,我想在大约 50 个字符后修剪 FN/LN 并替换为...
我如何使用 Javascript/jQuery 来做到这一点
I have a HTML page which shows a Name dynamically. Now this name (FN LN) can be upto 240 charcaters. But at the UI side, I want to trim the FN/LN after about 50 characters and replace with ...
How can I do this using Javascript/jQuery
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这应该有效。
This should work.
就像这样简单的事情:
Something as simple as:
但您也可以使用 CSS 来实现此目的: http://mattsnider.com/css /css-string-truncation-with-ellipsis/
But you can also use CSS for this: http://mattsnider.com/css/css-string-truncation-with-ellipsis/
这是一个正则表达式的方法来做到这一点:
既然你已经问过,如果你想jqueryfy这个功能,你可以用它制作一个插件:
并像这样使用它:
here's a regex way to do that :
Since you've asked, if you want to jqueryfy this functionality, you can make a plugin out of it :
And use it like this :