자바스크립트 색상 속성
번역 결과:
英['kʌlə(r)] 美[ˈkʌlɚ]
n.<뷰티> 색상, 피부색, 안색, 색소, 에센스
v.<뷰티> ; 색상 변경...; 백색 도료, 렌더링, 색상;
자바스크립트 색상 속성통사론
기능: 텍스트 색상 설정
구문: Object.style.color=color
자바스크립트 색상 속성예
<html> <head> <script type="text/javascript"> function setColor() { document.getElementById("p1").style.color="#ff0000"; document.getElementById("p2").style.color="magenta"; } </script> </head> <body> <p id="p1">This is an example paragraph</p> <p id="p2">This is also an example paragraph</p> <input type="button" onclick="setColor()" value="Change color of text" /> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요