gpt4 book ai didi

css - 使用 css 隐藏复选框

转载 作者:太空宇宙 更新时间:2023-11-03 22:40:42 25 4
gpt4 key购买 nike

我有代码,是我检查得到的:

<td class=ox-list-pair style>
<input type="CHECKBOX" name="ox_CkSurvey_Sport__xava_selected" value="selected:0" onclick="openxava.onSelectElement('CkSurvey','Sport','null','row=0,viewObject=xava_view',this.checked,'ox_CkSurvey_Sport__0',false,'','border-bottom: 1px solid;','',false,false,0,'xava_tab')">
</td>

我试图隐藏复选框,但都没有成功。我的尝试:

input[type=checkbox].ox_CkSurvey_Sport__xava_selected {
display: none;
}

ox_CkSurvey_Sport__xava_selected {
display: none;
}

.ox_CkSurvey_Sport__xava_selected input[type="checkbox"]{
display:none;
}

请注意<td>有效,因为它在 <tr> 中以及<table> .

请帮帮我。谢谢。

最佳答案

您应该阅读 CSS 选择器。

https://www.w3schools.com/cssref/css_selectors.asp

您正试图隐藏类为“ox_CkSurvey_Sport__xava_selected”的复选框,但该类不存在。

你需要这样做:

input[type=checkbox][name=ox_CkSurvey_Sport__xava_selected] {
display: none;
}

关于css - 使用 css 隐藏复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44147308/

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