假设我有很多DIV
个不同的ID
,我想在所有DIV
个ID
s中插入一小段html 。我试过了
$("#lblTopPager", "#lblBottomPager").html('hello my data');
但它不起作用。谁能告诉我正确的方法呢?
答案 0 :(得分:1)
元素需要是一个逗号分隔列表,现在你正在给出上下文,并且基本上在ID为lblTopPager
的元素中寻找ID为lblBottomPager
的元素,就好像你在哪里使用$('#lblBottomPager').find('#lblTopPager')
。
要同时定位两个或多个元素:
$("#lblTopPager, #lblBottomPager").html('hello my data');