jQuery 仅在 中隐藏文本块不是背景
我有一个
文本标题块,其中设置了背景颜色和文本内容。我想隐藏文本内容而不是背景颜色。当我在
上使用 hide() 时,它会隐藏整个块以及所有内容。我需要带有颜色的块,然后我希望文本稍后显示。
上使用 hide() 时,它会隐藏整个块以及所有内容。我需要带有颜色的块,然后我希望文本稍后显示。我正在考虑将其包装在 div 中并使用 div 的背景颜色,但这会导致额外的代码。
是否可以仅控制
内的文本内容而不是整个框?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
简短的回答是否定的。您不能仅“隐藏”文本。
话虽这么说,您可以通过几种方式模拟它被隐藏:
1)您可以删除文本,将其存储在本地,然后在取消隐藏时重置它。
但是,这将使您必须在
元素上具有静态宽度/高度,否则当您更改文本时它会更改大小。
2) 使文本颜色与背景颜色匹配也可以模拟“隐藏”文本。
3) 或者可能是最好的选择,只需将其包装在带有背景颜色的 div 中,然后就到此为止了。
Short answer is no. You cannot 'hide' just the text.
That being said you can simulate it being hidden in a couple of ways:
1) You can remove the text, storing it locally then reset it on unhide.
However, this will make you have to have a static width/height on the
<h2>
element or it will change size when you change the text.2) Making the text color match the background color also could simulate 'hiding' the text.
3) Or probably the best option, just wrap it in a div with a background color, and call it a day.
为什么不像这样将文本包装在标题内,然后隐藏内部元素:
然后在 jQuery 中,使用以下选择器:
编辑:@TJ Crowder 的建议确实是一个很好的建议,您可以随时放置
< /code> 在换行文本之后,使
始终保持其高度。
Why not wrap the text inside the header like this then hide the inner element:
then in jQuery, use the following selector:
Edit: @T.J. Crowder's suggestion is indeed a good one, you can always put an
after your wrapped text to make the
<h2>
always keep its height.您可以将
text-indent
设置为-9999px
或类似的值。You could set
text-indent
to-9999px
or something like that.您可以将 h2 文本颜色更改为与背景颜色相同,而不是使用 hide(),这将创建隐藏效果:
rather than using hide(), you can just change the h2 text color to be the same as the background color, that would create a hide effect:
您可以这样做
,这将使用
标记包裹文本。
在您的 css 中将
标记设置为
display:none;
。这将隐藏文本而不是h2
标记。检查工作示例 http://jsfiddle.net/BE8N9/1/
You can do
This will wrap the text with a
<b>
tag.in your css set the
<b>
tag todisplay:none;
. This will hide the text and not theh2
tag.Check working example at http://jsfiddle.net/BE8N9/1/
您可以将
。这将保留元素占用的垂直空间,但不显示任何文本。 (不要用空白字符串替换其文本,该元素实际上会消失。)
h1
的文本替换为表示为 jQuery 插件(尽管这可能有点矫枉过正 :-) ):
Live copy
也就是说,我会退后一步,考虑一下这是否真的是正确的做法。很可能是这样,但似乎有点奇怪。
You could replace the text of the
. That would preserve the vertical space consumed by the element, but with no text showing. (Don't replace its text with a blank string, the element would effectively disappear.)
h1
withExpressed as a jQuery plug-in (although that may be a bit overkill :-) ):
Live copy
That said, I'd step back a moment and consider whether this really is the right thing to do. It may well be, but it seems a bit odd.
让文字与背景颜色相同怎么样?
What about making the text the same colour as the background?