상세 컨텐츠

본문 제목

[javascript] 인풋에 있는 모든거 보고싶을때

카테고리 없음

by 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);
                });

댓글 영역