방법: 1. "document.getElementById('id value')" 문을 사용하여 그림 개체를 얻습니다. 2. "picture object.setAttribute("width", "width value")" 또는 "picture 개체. style.width" "value" 문은 이미지 너비를 변경합니다.
이 튜토리얼의 운영 환경: Windows 7 시스템, JavaScript 버전 1.8.5, Dell G3 컴퓨터.
javascript에서 이미지 너비를 변경하는 방법
<img id="img" src="img/2.jpg" style="max-width:90%" style="max-width:90%"/ alt="자바스크립트로 이미지 너비를 변경하는 방법" >
1. id 값에 따라 이미지 개체를 가져옵니다
var img=document.getElementById('img');
2. 이미지 너비를 변경하려면 setAttribute("width", "值")
또는 스타일 개체의 너비 속성을 사용하세요.
img.setAttribute("width", "宽度值"); // 或 img.style.width = "宽度值";
전체 구현 코드 :
<!doctype html> <html> <head> <meta charset="utf-8"> </head> <body> <img id="img" src="img/2.jpg" style="max-width:90%" style="max-width:90%" / alt="자바스크립트로 이미지 너비를 변경하는 방법" ><br /><br /> <button onclick="myFunction()">改变图片宽度</button> <script type="text/javascript"> function myFunction() { var img = document.getElementById('img'); // img.setAttribute("width", "300"); img.style.width = "300px"; } </script> </body> </html>
렌더링:
[권장 학습:javascript 고급 튜토리얼]
위 내용은 자바스크립트로 이미지 너비를 변경하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!