jQuery 仅在

中隐藏文本块不是背景

发布于 2024-11-04 06:34:19 字数 290 浏览 0 评论 0 原文

我有一个

文本标题块,其中设置了背景颜色和文本内容。我想隐藏文本内容而不是背景颜色。当我在

上使用 hide() 时,它会隐藏整个块以及所有内容。我需要带有颜色的块,然后我希望文本稍后显示。

我正在考虑将其包装在 div 中并使用 div 的背景颜色,但这会导致额外的代码。

是否可以仅控制

内的文本内容而不是整个框?

I have an <h2> text title block with a set background color and text content. I want to hide the text content and not the background color. When I use hide() on the <h2> it hides the whole block with everything. I need the block with the color and then I want the text to appear later.

I was thinking of wrapping it in a div and using the background color of the div but it will result in extra code.

Is it possible to control just text content only within the the <h2> and not the entire box?

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

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

发布评论

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

评论(7

客…行舟 2024-11-11 06:34:20

简短的回答是否定的。您不能仅“隐藏”文本。

话虽这么说,您可以通过几种方式模拟它被隐藏:

1)您可以删除文本,将其存储在本地,然后在取消隐藏时重置它。

var txt;
function hide() {
  txt = $('h2').text();
  $('h2').text('');
}
function show() {
  $('h2').text(txt);
}

但是,这将使您必须在

元素上具有静态宽度/高度,否则当您更改文本时它会更改大小。

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.

var txt;
function hide() {
  txt = $('h2').text();
  $('h2').text('');
}
function show() {
  $('h2').text(txt);
}

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.

桃气十足 2024-11-11 06:34:20

为什么不像这样将文本包装在标题内,然后隐藏内部元素:

<h2><span>Your text here</span> </h2>

然后在 jQuery 中,使用以下选择器:

$('h2 > span');

编辑:@TJ Crowder 的建议确实是一个很好的建议,您可以随时放置  < /code> 在换行文本之后,使

始终保持其高度。

Why not wrap the text inside the header like this then hide the inner element:

<h2><span>Your text here</span> </h2>

then in jQuery, use the following selector:

$('h2 > span');

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.

燃情 2024-11-11 06:34:20

您可以将 text-indent 设置为 -9999px 或类似的值。

You could set text-indent to -9999px or something like that.

原谅过去的我 2024-11-11 06:34:20

您可以将 h2 文本颜色更改为与背景颜色相同,而不是使用 hide(),这将创建隐藏效果:

$('h2').css('color','your-background-color');

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:

$('h2').css('color','your-background-color');
ぶ宁プ宁ぶ 2024-11-11 06:34:20

您可以这样做

$('h2').contents().filter(function() {
    return this.nodeType === 3
}).wrap('<b />');

,这将使用 标记包裹文本。
在您的 css 中将 标记设置为 display:none;。这将隐藏文本而不是 h2 标记。

检查工作示例 http://jsfiddle.net/BE8N9/1/

You can do

$('h2').contents().filter(function() {
    return this.nodeType === 3
}).wrap('<b />');

This will wrap the text with a <b> tag.
in your css set the <b> tag to display:none;. This will hide the text and not the h2 tag.

Check working example at http://jsfiddle.net/BE8N9/1/

Smile简单爱 2024-11-11 06:34:19

您可以将 h1 的文本替换为  。这将保留元素占用的垂直空间,但不显示任何文本。 (不要用空白字符串替换其文本,该元素实际上会消失。)

表示为 jQuery 插件(尽管这可能有点矫枉过正 :-) ):

(function($) {
    $.fn.hideText = function() {
        this.html(function() {
            var $this = $(this);
            $this.attr('data-oldtext', $this.html());
            return ' ';
        });
        return this;
    };
    $.fn.showText = function() {
        this.html(function() {
            var $this = $(this);
            return $this.attr('data-oldtext') || $this.html();
        });
        return this;
    };
})(jQuery);

Live copy

也就是说,我会退后一步,考虑一下这是否真的是正确的做法。很可能是这样,但似乎有点奇怪。

You could replace the text of the h1 with  . 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.)

Expressed as a jQuery plug-in (although that may be a bit overkill :-) ):

(function($) {
    $.fn.hideText = function() {
        this.html(function() {
            var $this = $(this);
            $this.attr('data-oldtext', $this.html());
            return ' ';
        });
        return this;
    };
    $.fn.showText = function() {
        this.html(function() {
            var $this = $(this);
            return $this.attr('data-oldtext') || $this.html();
        });
        return this;
    };
})(jQuery);

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.

水波映月 2024-11-11 06:34:19

让文字与背景颜色相同怎么样?

What about making the text the same colour as the background?

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