.hover( handlerIn(eventObject),handlerOut(eventObject) ) .hover( handlerInOut(eventObject) )
<html> <head> <title>ThaiCreate.Com jQuery Tutorials</title> <style> ul { margin-left:20px; color:blue; } li { cursor:default; } span { color:red; } </style> <script type="text/javascript" src="jquery-1.6.4.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("li").hover( function () { $(this).append($("<span> ***</span>")); }, function () { $(this).find("span:last").remove(); } ); //li with fade class $("li.fade").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);}); }); </script> </head> <body> <ul> <li>Milk</li> <li>Bread</li> <li class='fade'>Chips</li> <li class='fade'>Socks</li> </ul> </body> </html>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท