0

假设我有很多DIVs 不同ID的 s,我想将一小段 html 插入到所有这些DIV不同IDs 的 s 中。我试过了

$("#lblTopPager", "#lblBottomPager").html('hello my data');

但它不起作用。谁能告诉我正确的做法?

4

1 回答 1

1

元素需要是一个逗号分隔的列表,现在您正在提供上下文,并且基本上在带有 IDlblTopPager的元素内寻找带有 ID 的元素lblBottomPager,就像您在 where using 一样$('#lblBottomPager').find('#lblTopPager')

要同时定位两个或多个元素,您可以执行以下操作:

$("#lblTopPager, #lblBottomPager").html('hello my data');
于 2012-07-20T14:22:54.270 回答