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.
我在 3 个带有 ID 名称的下拉菜单周围有一个标签,但我想知道如何使用 jquery 选择它。这是我的代码:小提琴
如何按 ID 选择标签?谢谢
您需要 # 按 ID 选择。
$("#ven_label").show();
$('label[id="ven_label"]').show();
或更好
$('#ven_label').show();
但是“jsfiddle”示例中的问题是您使用的是“Mootools”而不是“jQuery”:
使用 jQuery 运行示例
您可以通过 id 选择,只需#id_name在$()下面键入
#id_name
$()
$('#ven_label').show();
这是 jquery 选择器的完整列表