jquery获取同一name的input的value值
获取同一name的input的value值
<input type='text' name='cflx' id='cflx0' value='1'><input type='text' name='cflx' id='cflx1' value=2'>
<input type='text' name='cflx' id='cflx2' value='3'>
-----js写法如下$(function(){
$("input[name='cflx']").each(function(index,item){
alert($(this).val())
}
);
});
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。