如何同时刷新具有不同id的选择器?

时间:2014-03-09 10:25:04

标签: jquery

是否可以同时刷新两个ID不同的选择器?

$('#select-choice-direction #select-choice-direction-postuser').html(xmlhttp.responseText).selectmenu( "refresh");

1 个答案:

答案 0 :(得分:4)

使用逗号分隔它们。您在那里所做的是找到ID为select-choice-direction-postuser并且select-choice-direction为父母的孩子。

应改为:

$('#select-choice-direction, #select-choice-direction-postuser').html();