문제 : 리눅스 환경에서 자바 어플리케이션 실행이 안됌
원인 : yml 저장시 들여쓰기 잘못적음
ex)
server:
host: 127.0.0.1
port: 3010
path: v1/user
문제 : 리눅스 환경에서 자바 어플리케이션 실행이 안됌
원인 : yml 저장시 들여쓰기 잘못적음
ex)
server:
host: 127.0.0.1
port: 3010
path: v1/user
- getElementsByTagName 메소드는 값을 객체로 받아오기 때문에(HTMLCollection(3) [p, p, p])
- target.getAttribute -> X
- target[i].getAttribute -> O
<body>
<div>
<p data-topic-name="discussion">General discussion</p>
<p data-topic-name="bugs">Bugs</p>
<p data-topic-name="animals">Animals</p>
</div>
</body>
<script>
function newMessage() {
let target = document.getElementsByTagName('p');
console.log(target); // HTMLCollection(3) [p, p, p]
let success = target[0].getAttribute('data-topic-name');
console.log(success); // discussion
let error = target.getAttribute('data-topic-name');
console.log(error); // Uncaught TypeError: target.getAttribute is not a function
}
newMessage();
</script>
[기타 오류] javascript 파일 이름 띄어쓰기 X (0) | 2021.08.04 |
---|---|
[html 오류] id와 함수명 같을때 (form태그, input태그) (0) | 2021.08.02 |
- 파일 이름을 지을때 띄어쓰기 쓰지말자!!
[javascript 오류] getAttribute is not a function(태그 속성값을 못가져올때) (0) | 2021.08.10 |
---|---|
[html 오류] id와 함수명 같을때 (form태그, input태그) (0) | 2021.08.02 |
// Uncaught TypeError: short is not a function at HTMLInputElement.onclick
// html
<form>
<input type="button" id="short" value="short" onclick="short()">
</form>
</body>
// javascript
function short() {
console.log('hi');
}
// html
<form>
<input type="button" id="short" value="short" onclick="window.short()">
</form>
</body>
// javascript
function short() {
console.log('hi');
}
// html
<form>
<input type="button" id="short" value="short" onclick="shorts()">
</form>
</body>
// javascript
function shorts() {
console.log('hi');
}
[javascript 오류] getAttribute is not a function(태그 속성값을 못가져올때) (0) | 2021.08.10 |
---|---|
[기타 오류] javascript 파일 이름 띄어쓰기 X (0) | 2021.08.04 |