JavaScript에서 배경을 변경하는 방법: 먼저 "document.getElementById('id value')" 문을 사용하여 지정된 요소 개체를 가져온 다음 "element object.style.Background="배경 색상 값 또는 이미지 경로를 사용합니다. "" 문을 사용하여 배경을 설정할 수 있습니다.
이 튜토리얼의 운영 환경: Windows 7 시스템, JavaScript 버전 1.8.5, Dell G3 컴퓨터.
javascript는 배경을 변경합니다
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> #div{ height: 200px; background: url(img/1.jpg) no-repeat; } </style> <script> function displayResult(){ document.getElementById('h1').style.background="paleturquoise"; document.getElementById('div').style.background="url(img/2.jpg) no-repeat"; } </script> </head> <body> <h1 id="h1" style="background: red;">Hello World!</h1> <div id="div"></div> <br> <button type="button" onclick="displayResult()">改变背景</button> </body> </html>
Rendering:
Description:
getElementById() 메서드는 지정된 ID를 가진 첫 번째 개체에 대한 참조를 반환합니다.
지정된 ID의 요소가 없으면 null을 반환합니다.
지정된 ID의 요소가 여러 개 있으면 첫 번째 요소를 반환합니다.
배경 속성은 하나의 선언으로 모든 배경 속성을 설정합니다.
배경 속성 설정 구문:
Object.style.background="color image repeat attachment position"
더 많은 프로그래밍 관련 지식을 보려면 프로그래밍 비디오를 방문하세요! !
위 내용은 자바스크립트로 배경을 바꾸는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!