<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="js/jquery.js"></script> <script> $(function(){ $(‘img‘).hover(function(){ $(‘#result‘).html(‘GOGOGO‘); },function(){ $(‘#result‘).html(‘out-out‘); }) }) </script> </head> <body> <img src="images/1.jpg" width=‘100‘ height=‘100‘> <hr /> <div id="result"></div> </body> </html>
时间: 2024-10-07 17:53:49