jquery将给定类中的所有元素设置为相同的html

时间:2013-04-29 20:09:41

标签: jquery class set each

我有一个包含几个总字段的页面。它们都共享“totalAmount”类。

我需要使用jquery在所有这些字段中设置相同的值:

var amt = some value; 
$('.totamAmount').each // - Some instruction to set the value to amt;

2 个答案:

答案 0 :(得分:10)

只需val

$('.totamAmount').val('{the value you want here}');

如果它们不是表单元素,请使用text

$('.totamAmount').text('{the value you want here}');

答案 1 :(得分:1)

如果它们都是输入字段,那么您可以这样做:

$(".totamAmount").val(amt);