gpt4 book ai didi

jquery - 根据类和标题隐藏 SPAN 标签上的文本

转载 作者:太空宇宙 更新时间:2023-11-04 04:25:31 25 4
gpt4 key购买 nike

我想隐藏<span>里面的内容标记,但带有特定文本:

<span class="ms-RadioText" title="Created / Criar"><input id="ctl00_m_g_178a35bf_4d92_4887_8b39_b6e6e11d4a09_ff21_ctl00_ctl00" type="radio" name="ctl00$m$g_178a35bf_4d92_4887_8b39_b6e6e11d4a09$ff21$ctl00$RadioButtons" value="ctl00" checked="checked" /><label for="ctl00_m_g_178a35bf_4d92_4887_8b39_b6e6e11d4a09_ff21_ctl00_ctl00">Created / Criar</label></span>
<span class="ms-RadioText" title="Change / Alterar"><input id="ctl00_m_g_178a35bf_4d92_4887_8b39_b6e6e11d4a09_ff21_ctl00_ctl01" type="radio" name="ctl00$m$g_178a35bf_4d92_4887_8b39_b6e6e11d4a09$ff21$ctl00$RadioButtons" value="ctl01" /><label for="ctl00_m_g_178a35bf_4d92_4887_8b39_b6e6e11d4a09_ff21_ctl00_ctl01">Change / Alterar</label></span>

我必须隐藏类“ms-RadioText”和标题标签“Created/Criar”的内容

最佳答案

所以只需定位该元素即可:

$('span.ms-RadioText[title="Created / Criar"]').hide();

注意:属性选择器也适用于 CSS3。

关于jquery - 根据类和标题隐藏 SPAN 标签上的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18338246/

25 4 0