Contoh dalam artikel ini menerangkan kawalan jquery yang boleh mengapungkan objek. Kongsikan dengan semua orang untuk rujukan anda. Butirannya adalah seperti berikut:
Kod js adalah seperti berikut:
(function($){ $.fn.scrolltip = function(){ $(this).each( function() { var obj = $(this); var objtop = obj.position().top; $(window).scroll(function(){ obj.css({ top:$(window).scrollTop()+objtop, position:'absolute' }); }); }); } })(jQuery);
Kod html adalah seperti berikut:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <script type="text/javascript" src="lib/jquery/jquery-1.3.2.js"></script> <script type="text/javascript" src="js/tip.js"></script> </script> <title>JQuery</title> </head> <body><div style="height:300px;background:#eee"><span id="colspon"></span></div> <br/> <br/> <br/> <div id="float" style="width:744px;height:34px;border:1px solid #C0DBF8;"></div> <div style="height:1000px;background:#eee"></div> </body> </html>
Saya harap artikel ini akan membantu reka bentuk pengaturcaraan jquery semua orang.