Daily coding

CSS : Java Script에서 CSS적용하기 본문

Front-end/Client

CSS : Java Script에서 CSS적용하기

sunnnkim 2020. 1. 9. 20:35

버튼 누르기 전
버튼 누른후 

 

 

< 실제 코드 >

 

obj = document.getElementById("demo");  -----> getElement를 통해 오브젝트를 통째로 받아온다.

 

// css 적용하기

---> .style 로 어트리뷰트에 접근

obj.style.color= "white";

obj.style.backgroundColor = "blue";

obj.style.textAlign = "center";

obj.style.borderStyle = "double";

obj.style.borderColor ="#00ff00";

obj.style.fontFamliy = "MS PGOTHIC";

obj.style.fontStyle = "italic";

obj.style.fontSize = "24pt";

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>

<!-- Java Script에서 CSS적용하기 -->

<div id="demo">Hello CSS World!</div>
<br>
<button type="button" onclick="func()">적용</button>

<script type="text/javascript">
function func() {
	
	obj = document.getElementById("demo");

	// css 적용하기
	
	obj.style.color= "white";
	obj.style.backgroundColor = "blue";
	obj.style.textAlign = "center";
	obj.style.borderStyle = "double";
	obj.style.borderColor ="#00ff00";
	obj.style.fontFamliy = "MS PGOTHIC";
	obj.style.fontStyle = "italic";
	obj.style.fontSize = "24pt";
}

</script>
</body>
</html>