mouse.html 605 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <img src="beijing.jpg" width="400" >
  9. <script>
  10. /**
  11. * setAttribute 可以修改 元素属性
  12. * 但是不能修改 style , 除非 把整个 style 全部重新赋值
  13. * @param arg
  14. */
  15. document.querySelector("img").onmouseout = function(arg){
  16. this.setAttribute("width", 400)
  17. }
  18. document.querySelector("img").onmouseover = function(){
  19. this.setAttribute("width", 1400)
  20. }
  21. </script>
  22. </body>
  23. </html>