Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的选项面板中,我有一个部分,用户可以在其中输入他们的 Twitter 用户名。目前,如果该字段的值为空,Twitter 图标仍会出现在我的网站上,如果值为空,我希望它不存在。
假设我的让 Twitter 图标出现的 div 类名为“.twitter”,如果名为“mytheme_twitter”的输入 id 的值为空,我将如何隐藏它?
if($('#mytheme_twitter:empty')){$('.twitter').hide();}
如果你有多个 twitter 类,这会将它们全部隐藏。否则你需要一个选择器来隐藏你想要隐藏的 twitter 类。