标签: jquery class set each
我有一个包含几个总字段的页面。它们都共享“totalAmount”类。
我需要使用jquery在所有这些字段中设置相同的值:
var amt = some value; $('.totamAmount').each // - Some instruction to set the value to amt;
答案 0 :(得分:10)
只需val:
val
$('.totamAmount').val('{the value you want here}');
如果它们不是表单元素,请使用text:
$('.totamAmount').text('{the value you want here}');
答案 1 :(得分:1)
如果它们都是输入字段,那么您可以这样做:
$(".totamAmount").val(amt);