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();