gpt4 book ai didi

jquery - 如何仅在具有多个元素的div中隐藏文本JQUERY

转载 作者:太空宇宙 更新时间:2023-11-04 15:07:09 26 4
gpt4 key购买 nike

在下面的 div 中:-

<div>
My Text that needs to be hidden
<span style="font-size: 21px">Other text Other things</span>
</div>

我只是想隐藏文本My Text that needs to be hidden。可能吗?

最佳答案

HTML:

<div>
<span id="mySpan" >My Text that needs to be hidden</span> // Add a span with a id
<span style="font-size: 21px">Other text Other things</span>
</div>

JQuery:

$(document).ready(function(){
$('#mySpan').css('display', 'none');
});

关于jquery - 如何仅在具有多个元素的div中隐藏文本JQUERY,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25492152/

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