如何使用 javascript 截断 HTML 编码文本而不截断编码字符

发布于 2024-07-20 16:29:37 字数 266 浏览 3 评论 0原文

我需要为网页编写一些客户端 JavaScript,当触发按钮的 onclick 事件时,该网页将截断 div 内的文本(该按钮的目的是让用户可以在完整版本和截断版本之间切换显示的文本) )。 文本中不会有任何 HTML 标签,但可能有 HTML 编码的字符,例如 " 和 &

有没有比对字符串进行 HTML 解码、截断和再次编码更好的方法?

这看起来像这可能是一个相当常见的任务,我以前对 JavaScript 没有那么丰富的经验,所以我不知道是否有比编码/解码更好的方法。

I need to write some client-side javascript for a webpage that will truncate the text inside a div, when the onclick event for a button is fired (the purpose of the button is so that users can toggle the displayed text between complete and truncated versions). There won't be any HTML tags in the text, but there may be HTML encoded characters such as " and &

Is there away to do this that is better than having to HTML decode the string, truncate and encode again?

This seems like it might be a fairly common task that has been done before. I'm not that experienced with JavaScript, so I don't know if there's a better way to do it with javascript than encoding/decoding.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

执手闯天涯 2024-07-27 16:29:38

解码、截断然后编码是有意义的。 解码后,字符串中的信息将针对任务进行标准化。

编写 HTML 感知的字符串截断函数似乎是错误的方法。

Decoding, truncating then encoding makes sense. Once decoded, the information in the string is normalized for the task.

Writing an HTML-aware string-truncating function seems like the wrong approach.

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