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
- 프래그먼트
- textContent
- ViewPager
- Adapter
- ActionBar
- 230510
- string
- javascript
- parcelable
- Class
- C++
- 데이터 타입
- 안드로이드
- html
- DOMContentLoaded
- 인텐트
- intent
- null-safety
- classList
- putextra
- DFS
- querySelector
- 230503
- fragment
- Flutter
- 부가데이터
- 함수 인자
- 230508
- serializable
- 생명주기
Archives
- Today
- Total
나만의 개발노트
[JS 개념] document.getElementById() 본문
document.getElementById()
: JavaScript에서 Id로 HTML에 있는 Element를 불러오는 함수
getElementById(id);
<예제>
html
<html lang="en">
<head>
<title>getElementById example</title>
</head>
<body>
<p id="para">Some text here</p>
<button onclick="changeColor('blue');">blue</button>
<button onclick="changeColor('red');">red</button>
</body>
</html>
javascript
function changeColor(newColor) {
const elem = document.getElementById("para");
elem.style.color = newColor;
}
1st 기록 : 23.04.20(목)
'[JavaScript] > [JavaScript] 개념 모음' 카테고리의 다른 글
[JS 개념] currentTarget (0) | 2023.05.08 |
---|---|
[JS 개념] forEach() (0) | 2023.05.03 |
[JS 개념] addEventListener() (0) | 2023.04.20 |
[JS 개념] document.querySelector() (0) | 2023.04.20 |
[JS 개념] arrays(배열) (0) | 2023.04.20 |