gpt4 book ai didi

javascript - javascript 中标签旁边的标记

转载 作者:行者123 更新时间:2023-11-28 20:29:39 26 4
gpt4 key购买 nike

我没有使用 jQuery 的奢侈,我想在某些情况下使用 Javascript 隐藏 span 标签,并且 span 标签没有 id。

"<label name="lcity" id="lcity" for="city" class="formLabel" title="City">City:</label>
<span class=spanclass>*</span>

我尝试过类似的方法,但没有成功:

var countyFieldLabel = document.getElementById('lcity').nextElementSibling;
countyFieldLabel.visibility="hidden";

有人可以建议一下吗?

谢谢

最佳答案

你几乎走对了:-

Visibility 不是元素属性,而是样式属性。

使用

 countyFieldLabel.style.visibility="hidden";

而不是

countyFieldLabel.visibility="hidden";

Fiddle

关于javascript - javascript 中标签旁边的标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16677812/

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