카테고리 없음
[javascript] 인풋에 있는 모든거 보고싶을때
esoesmio
2023. 12. 1. 13:39
$form.find(':input').each(function () {
var inputType = this.type;
var inputName = this.name;
var inputValue = $(this).val();
console.log('Type: ' + inputType + ', Name: ' + inputName + ', Value: ' + inputValue);
});