Để thay đổi giá trị của thuộc tính trong JavaScript, bạn có thể thử chạy mã sau -
Ví dụ
<!DOCTYPE html> <html> <body> <img id="HTML5" src="https://www.tutorialspoint.com/html5/images/html5-mini-logo.jpg" width="200" height="150"> <script> document.getElementById("HTML5").width = "250"; </script> <p>Image width updated</p> </body> </html>