0

以下のコードを使用しました jQuery("#change").submit(function() {

  jQuery.each(jQuery('input[type=password]'),function(index,value){

//検証のためにパスワード入力フィールドの値を取得する必要があります

});
return false;

});

また、フォームで 3 つのパスワード入力フィールドを使用しました

jqueryの各関数内で値を取得する方法を教えてください。

4

3 に答える 3

3
$('input[type=password]').each(function(){
    alert($(this).val());
});
于 2012-07-19T07:25:27.913 に答える
1
$('input[type=password]').each(function(i,item){ alert( $(item).val() ) })
于 2012-07-19T07:26:46.667 に答える
0

以下のようにコードを変更するだけです

            $('input[type=password]').each(function(index,value)
            {
                // Here value(parameter) is an object
                alert(value.value);
            });
于 2012-07-19T07:31:18.027 に答える