gpt4 book ai didi

javascript - 如何去掉html开头和结尾的 ?

转载 作者:行者123 更新时间:2023-11-30 14:13:25 25 4
gpt4 key购买 nike

我有一个带有   的 HTML 内容我想删除  从内容的开头和结尾。无需在中间删除。

我试过用这个:

el.innerHTML = el.innerHTML.replace(/\ /g, '');

el 有一些 HTML 内容。像这样使用时,介于   之间也会被移除。

我的 HTML 内容应该如下所示

enter image description here

如何删除  从开头和结尾的 HTML 内容?

示例:如果 HTML 内容应为 <p>&nbsp;test&nbsp;example&nbsp;</p>意思是,我想要像 <p>test&nbsp;example</p> 这样的输出.

最佳答案

来自 jQuery 的 trim 正是您要寻找的。

$.trim('  string with spaces at the ends   ');

或纯 javascript:

'  string with spaces at the ends   '.trim()

关于javascript - 如何去掉html开头和结尾的&nbsp?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53984602/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com