abstract:<!DOCTYPE html><html><head> <title>jQuery的事件函數(shù)</title> <script type="text/javascript" src="jquery-3.3.1.js"></script></head><body
<!DOCTYPE html> <html> <head> <title>jQuery的事件函數(shù)</title> <script type="text/javascript" src="jquery-3.3.1.js"></script> </head> <body> <script type="text/javascript"> $(document).ready(function(){ $(document).mousemove(function(aa){//mousemove換click挺好 $('span').text('x:'+aa.pageX+'y:'+aa.pageY) }) a=0 $(window).resize(function(){ // alert('窗口被調(diào)整大小') $('b').text(a++)//a+=1也可以 }) }) </script> <div>當(dāng)前的鼠標(biāo)位置:<span></span></div> <div>頁面被調(diào)整的次數(shù):<b></b></div> </body> </html>