Jquery - 修剪内部 HTML?
我不知何故需要 trim()
我的内容的innerHTML...所以我有这样的东西:
<div>
<b>test</b>
123 lol
</div>
我基本上想摆脱仅在 < 之间的空白/code> 和下一个字符,以及结束之前的空格。
所以结果将是:
<div><b>test</b>
123 lol</div>
I somehow need to trim()
the innerHTML of my content... so I have something like this:
<div>
<b>test</b>
123 lol
</div>
I basically want to rid of the white space that is ONLY between <div>
and the next character, and the white space just before the closing </div>
.
So the outcome would be:
<div><b>test</b>
123 lol</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该获取任何元素的内容,修剪其中的空格并将其重置为内容。
This should take the contents any element, trim the whitespace from it and reset it as the content.
我真的不知道你为什么要这样做,但看起来你正在使用jquery,所以你可以使用修剪助手:
I don't really know why you want to do this but it seems like you are using jquery, so you can use the trim helper:
您可以轻松编写 jQuery 插件来执行此操作。我为此创建了静态方法和实例方法。
您可以切换下面的
__DEBUG__TRIM_TYPE
变量来更改技术。每种情况都会产生完全相同的结果。它们是实现相同结果的不同方法。You can easily write a jQuery plugin to do this. I created both a static and instance method for this.
You can toggle the
__DEBUG__TRIM_TYPE
variable below to change the technique. Each case will produce the exact same result. They are different ways of achieving the same result.