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.
我正在编写一个 Windows 8 应用程序,我正在使用 jQuery。
我有以下代码行不起作用:
$('#myId1', '#myId2').hide();
但这工作得很好。
$('#myId1').hide(); $('#myId2').hide();
没什么大不了的,但第一行代码应该是一样的。有没有人经历过这个/知道解决方法?
jquery 选择器类似于 css 选择器。 如果要选择所有带有style1联合元素的元素,style2则必须使用逗号:
style1
style2
style1, style2
逗号将两个选择器联合起来。因此,对于隐藏元素#myId1,#myId2您将编写代码:
#myId1
#myId2
$('#myId1, #myId2').hide();