如何使用js或JQuery仅将字符串的字符设置为invisible false

发布于 2024-12-06 11:44:44 字数 126 浏览 2 评论 0原文

我有一个字符串

"Custormer1#-#Project1"。

我想隐藏字符串中的两个 #?我可以在不使用 javascript 或 JQuery 替换字符的情况下执行此操作吗?

I am having a string

"Custormer1#-#Project1".

I want to invisible the two #s in the string? Can I do this without replacing the character using javascript or JQuery?

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

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

发布评论

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

评论(2

孤星 2024-12-13 11:44:44

您唯一的选择是将它们包装在 元素中,并使用 CSS 隐藏该跨度。

检查这个小提琴的例子: http://jsfiddle.net/CJefw/ 并注意 text() jquery 中的方法仍然返回正确的内容,没有添加跨度。

The only option you have is to wrap them in a <span>-element and hide that span with CSS.

Check this fiddle for an example: http://jsfiddle.net/CJefw/ and note that the text() method in jquery still returns the right content, without the added spans.

-柠檬树下少年和吉他 2024-12-13 11:44:44

您可以将 jquery 与 map 一起使用原始字符串数组,并且在映射中您可以忽略字符。

所以原始字符串不会受到

这种方式的影响 - 你不会替换字符......

you can use jquery with map the original string array and in the map you can ignore the char.

so the original string wont be affected

that way - you wont replace the chars....

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