Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะเปลี่ยนค่าของแอตทริบิวต์ใน javascript ได้อย่างไร?


ในการเปลี่ยนค่าของแอตทริบิวต์ใน JavaScript คุณสามารถลองเรียกใช้โค้ดต่อไปนี้ -

ตัวอย่าง

<!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>