✍️

jQuery 備忘録

2022/09/22に公開

備忘録です。

NG

$("input").each(function(index,elm){console.log(elm.val())})

jQueryオブジェクトにしかval()メソッドは使えないため。

OK

$("input").each(function(index,elm){console.log($(elm).val())})

val()が使えるようにjQueryオブジェクトに変換する。
下記のようにしてもOK。

$("input").each(function(index,elm){console.log(elm.value)})

jQueryメソッドを使わずに値を取得する。

Discussion