getElementById

DOM:document.getElementById

운영자 | 기사입력 2007/06/22 [02:51]
javascript >
필자의 다른기사 보기 인쇄하기 메일로 보내기 글자 크게 글자 작게
getElementById
DOM:document.getElementById
 
운영자   기사입력  2007/06/22 [02:51]

DOM:document.getElementById

=========================================================================
<html>
<head>
<title>getElementById example</title>
<script type="text/javascript">
function changeColor(newColor)
{
 elem = document.getElementById("para1");
 elem.style.color = newColor;
}
</script>
</head>
<body>
<p id="para1">Some text here</p>
<button onclick="changeColor('blue');">blue</button>
<button onclick="changeColor('red');">red</button>
</body>
</html>
==========================================================
트위터 트위터 페이스북 페이스북 카카오톡 카카오톡
기사입력: 2007/06/22 [02:51]  최종편집: ⓒ iwav
 
 
javascript 많이 본 기사