具有长 HTML 字符串和 的正则表达式
我刚刚找到
元素(链接 )这基本上让特定的区域可以在需要时进行休息。
基本上我想在我的应用程序中实现它,以防止由于博客中的评论包含太多字母或符号而破坏布局。
问题是:它必须与 HTML 兼容,因此 averylongmadeupandunnecesaryunspacedword
可能会分解每 25 个字符,但不会破坏链接 链接
。
I just found the <wbr>
element (link) which basically lets specific an area where a break could apply if needed.
Basically I'd like to implement it in my apps, to prevent breaking the layout due a comment in a blog with too many letters or signs.
The problem is: it has to be HTML compatible, so averylongmadeupandunnecesaryunspacedword
might break apart each 25 characters but it won't break a link <a href="http://www.google.com/search?hl=en&source=hp&q=averylongandunnecesarywordingoogle&aq=f&aql=&aqi=&oq=">link</a>
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你考虑过使用CSS吗? IE、Safari 和 FireFox 3.5 均支持 自动换行 属性,
此外, IE8 不支持 :(
Have you considered using CSS? The word-wrap property is supported in IE, Safari, and FireFox 3.5
Also, <wbr> isn't supported on IE8 :(