如何使用js或JQuery仅将字符串的字符设置为invisible false
我有一个字符串
"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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您唯一的选择是将它们包装在
元素中,并使用 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.
您可以将 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....