목차
<progress> 객체 정의 - 진행상태바
<progress> 객체 구문
<progress> 객체 예제 - 접근
<progress> 객체 예제 - 생성
<progress> 객체 속성
<progress> 객체 정의 - 진행상태바
HTML <progress> 태그(요소) 의미.
<progress> 객체 구문
[접근]
var x = document.getElementById ("요소ID");
[생성]
var x = document.createElement ("PROGRESS");
<progress> 객체 예제 - 접근
다운진행률: <progress id="hz" value="75" max="100"></progress>
<button onclick="homzzang()">클릭</button>
<p id="demo"></p>
<script>
function homzzang() {
var x = document.getElementById("hz").value;
document.getElementById("demo").innerHTML = x;
}
</script>
결과보기
<progress> 객체 예제 - 생성
<button onclick="homzzang()">클릭</button>
<script>
function homzzang() {
var x = document.createElement("PROGRESS");
x.setAttribute("value", "55");
x.setAttribute("max", "100");
document.body.appendChild(x);
}
</script>
결과보기
<progress> 객체 속성
labels
진행률 표시줄의 레이블 목록 (있는 경우) 반환.
max
진행률 표시줄의 max 속성값 설정/반환.
position
진행률 표시줄의 현재 위치 반환.
현재값 (= value 속성값)을 최대값 (= max 속성값)으로 나눈 값.
value
진행률 표시줄의 value 속성값 설정/반환.
※ <pregress> 객체는 표준 속성/메서드 /이벤트 지원.
주소 복사
랜덤 이동