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.
我有:
var outcome = $('#outcome') ;
有一个结果“#outcome”,但我想有两个结果
我试过了
var outcome = $('#outcome #outcome2') ;
用逗号分隔选择器:
var outcome = $('#outcome, #outcome2');
您当前所拥有的是寻找一个元素匹配#outcome2,它是元素匹配的后代#outcome。
#outcome2
#outcome
这记录在jQuery API 中的“多重选择器”下。如该页所述,另一种方法是使用该add方法(但在这种情况下,我绝对建议坚持使用多重选择器):
add
var outcome = $('#outcome').add('#outcome2');