gpt4 book ai didi

html - 无法使用 css 隐藏带有 ":"的输入字段

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

这是html代码

<div class="field">
<label for="billing:region_id" class="">
<em style="display: none;">*</em>city
</label>
<div class="input-box">
<select id="billing:region_id" name="billing[region_id]" title="縣市" class="" style="display: none;" defaultvalue="">
<option value="">please select</option>
</select>
<script type="text/javascript">
//<![CDATA[
$('billing:region_id').setAttribute('defaultValue', "");
//]]>
</script>
<input type="text" id="billing:region" name="billing[region]" value="" title="region" class="input-text">
</div>
</div>

我想隐藏

<input type="text" id="billing:region" name="billing[region]" value="" title="region" class="input-text">

使用CSS

#billing:region 
{
display: none;
}

但它不起作用。有人知道问题出在哪里吗?

最佳答案

元字符需要使用斜杠:

#billing\:region {
display: none;
}

see more here


Comment response:

像这样?

[for="billing\:region"]{
display: none;
}

关于html - 无法使用 css 隐藏带有 ":"的输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23332233/

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