Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- change detection
- angular
- 자바스크립개념
- getElementsByClassName
- oh-my-zsh
- NVM
- Sentry
- Visual Studio Code
- 변화감지
- typescript
- rxjs
- hashchange
- JavaScript
- error
- ChangeDetectorRef
- 이미지바꾸기
- angular5
- code .
- Ionic
- 테두리굵기
- zsh
- fromEvent
- border-width
- ion-range
- VSCode
- aab 배포
- Git
- sealize
- php
- IONIC3
Archives
- Today
- Total
hsunny study blog
cannot read property 'replace' of undefined 본문
cannot read property 'replace' of undefined
원인: 올바른 값을 변수에 담아 가져오지 못한 채 실행
어디서: var answer = document.getElementsByName("test").value;
해결
getElementsByName은 하나의 name 배열명도 배열로 인식함
따라서 값을 변수에 제대로 담기 위해서는
document.getElementsByName("test")[0].value 와 같이 써야한다.
'programming > ERROR' 카테고리의 다른 글
Uncaught SyntaxError: Unexpected end of input (0) | 2020.08.30 |
---|---|
Mixed Content: The page at '%' was loaded over HTTPs, but requested an insecure image '%'. (0) | 2018.06.18 |
414 Request-URI Too Large (0) | 2018.06.18 |
popup창에서 window.opener로 값이 전송되지 않는 문제 (0) | 2018.04.11 |
[iOS]This action could not be completed. Try again. (0) | 2017.06.25 |