변경 방법: 1. "getElementById()" 문을 사용하여 id 값을 기반으로 요소 객체를 얻습니다. 2. "element object.setAttribute("style", "width: width value; height: height value)를 사용합니다. ;")" 문은 요소의 너비와 높이를 변경합니다.
이 튜토리얼의 운영 환경: Windows 7 시스템, JavaScript 버전 1.8.5, Dell G3 컴퓨터.
자바스크립트에서는 setAttribute() 메서드를 사용하여 요소의 너비와 높이를 변경할 수 있습니다.
setAttribute() 메소드는 지정된 속성을 추가하고 지정된 값을 할당합니다. 지정된 속성이 이미 존재하는 경우 값은 설정/변경만 됩니다.
문법:
元素对象.setAttribute('属性','属性值');
구현 코드:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <style type="text/css"> div{ border: 1px solid red; } </style> </head> <body> <div id="div" style="width: 200px;height: 200px;"></div> <script> var div=document.getElementById("div"); div.setAttribute("style","width: 100px;height: 100px;"); </script> </body> </html>
렌더링:
[권장 학습: javascript 고급 튜토리얼]
위 내용은 자바스크립트에서 요소의 너비와 높이를 변경하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!