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.
我已经通过在 wordpress 中使用插件添加了一个自定义字段,但现在我想使用 jQuery 来显示/隐藏该自定义字段。我能够隐藏该字段,因为我知道该字段的 ID,但我也想隐藏该字段的标签,但我不知道该标签的 ID。请帮我。
您知道该字段的 id,因此如果您具有类似的 html 结构,请使用以下内容
<label id="customlabel">....</label> <input type="text" id="customtext" /> $("#customtext").prev().find('#customlabel').hide();