input 태그 name 속성값이 배열일 때 접근법
<script src="https://code.jquery.com/jquery-latest.js"></script>
<form name="hzform ">
<input type="text" name="hz[]" value="홈짱닷컴"/>
<input type="text" name="hz[]" value="Homzzang.com"/>
<input type="text" name="hz[]" value="홈페이지 제작관리"/>
</form>
<script type="text/javascript">
console.clear(); // 콘솔 청소
// JS name 접근 방식
var a = document.getElementsByName ("hz[]")[0].value;
console.log(a); // 홈짱닷컴
// JS form명 접근 방식
var b = document.hzform ["hz[]"][1].value;
console.log(b); // Homzzang.com
// jQuery name 접근 방식
var c = $('input[name="hz[]"]')[2].value;
console.log(c); // 홈페이지 제작관리
</script>
결과보기
PS. Codepen 사이트 좌측 하단의 Console 버튼 클릭하면 결과 확인 가능.
사용자하요_ 님 (190328) https://orothi.tistory.com/3
주소 복사
랜덤 이동