标签:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="js/jquery.js"></script> <script> //页面载入ready方法 $(function(){ $(‘img‘).bind({ mouseover:function(){ $(‘#result‘).html(‘GOGOGOG‘); }, mouseout:function(){ $(‘#result‘).html(‘OUTOUT‘); } }); }); </script> </head> <body> <input type="button" id="btnok" value="OK" /> <hr /> <img src="images/1.jpg"> <hr /> <div id="result"></div> </body> </html>
该方法要求参数是一个json对象
夺命雷公狗jquery---22-bind为jquery对象绑定多个相关事件
标签:
原文地址:http://www.cnblogs.com/leigood/p/4911933.html