具有长 HTML 字符串和 的正则表达式

发布于 2024-08-18 23:14:46 字数 460 浏览 1 评论 0原文

我刚刚找到 元素(链接 )这基本上让特定的区域可以在需要时进行休息。

基本上我想在我的应用程序中实现它,以防止由于博客中的评论包含太多字母或符号而破坏布局。

问题是:它必须与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怂人 2024-08-25 23:14:46

你考虑过使用CSS吗? IE、Safari 和 FireFox 3.5 均支持 自动换行 属性,

/* example */
.comments { word-wrap: break-word }

此外,IE8 不支持 :(

Have you considered using CSS? The word-wrap property is supported in IE, Safari, and FireFox 3.5

/* example */
.comments { word-wrap: break-word }

Also, <wbr> isn't supported on IE8 :(

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文