gpt4 book ai didi

jquery - 如果另一个类中的文本包含 ,则隐藏一个类。 . .

转载 作者:行者123 更新时间:2023-11-28 13:14:18 25 4
gpt4 key购买 nike

我正在处理一个包含多个步骤的表单,如果另一个类 .RegCurrent 包含文本“Step 1 Selection”,我想隐藏应用了 .newtest 类的一段文本。

<ol class="steps">
<li class="RegCurrent">Step 1 Selection</li>
<li class="notcurrent">Step 2 Selection</li>
<li class="notcurrent">Step 3 Selection</li>
</ol>

<div class="singleCol">
<span class="newtest">
<h1>some text</h1>
<p>some more text</p>
</span>
<p>some text and tables</p>
</div>

我尝试过的:

<script>
$(document).ready(function() {
if( $('.RegCurrent:contains("Step 1 Selection")') {
$('.newtest').hide();
}
});
</script>

最佳答案

You have to use length with selector in condition, other wise you wont get false as you will get jQuery object event when selector does not return any object.您还漏掉了 in 条件的右括号。

Live Demo

$(document).ready(function() {
if( $('.RegCurrent:contains("Step 1 Selection")').length) {
$('.newtest').hide();
}
});

关于jquery - 如果另一个类中的文本包含 ,则隐藏一个类。 . .,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18109670/

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