gpt4 book ai didi

css - 使用 jquery 更改标签标签的可见性

转载 作者:太空宇宙 更新时间:2023-11-03 19:52:15 24 4
gpt4 key购买 nike

我有一个在页面加载时隐藏可见性的标签。我如何使用 jquery 使其可见

<label for="error" style="margin:100px auto 60px auto;color:Red; line-height:40px;font-size:medium;visibility:hidden">error occured</label>

我可以隐藏它。

  $('label[for="error"]').hide();

这行不通

 $('label[for="error"]').show(); 

最佳答案

按如下方式更改您的代码:

<label for="error" style="margin:100px auto 60px auto;color:Red; line-height:40px;font-size:medium;display:none">error occured</label>

我已将您的 visibility:hidden 替换为 display:none

然后您可以使用 jQuery hide()show() 函数。

关于css - 使用 jquery 更改标签标签的可见性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17864617/

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