我使用了下面的代码 jQuery("#change").submit(function() {
jQuery.each(jQuery('input[type=password]'),function(index,value){
//我需要获取密码输入字段值的值以进行验证
});
return false;
});
我还在表单中使用了三个密码输入字段
请任何人帮助我如何在jquery每个函数中获取值?
我使用了下面的代码 jQuery("#change").submit(function() {
jQuery.each(jQuery('input[type=password]'),function(index,value){
//我需要获取密码输入字段值的值以进行验证
});
return false;
});
我还在表单中使用了三个密码输入字段
请任何人帮助我如何在jquery每个函数中获取值?
$('input[type=password]').each(function(){
alert($(this).val());
});
$('input[type=password]').each(function(i,item){ alert( $(item).val() ) })
只需修改您的代码,如下所示
$('input[type=password]').each(function(index,value)
{
// Here value(parameter) is an object
alert(value.value);
});