2009年5月27日 星期三

[jquery] div元素置頂語法

What is the simplest jQuery way to have a 'position:fixed' (always at top) div?

<div id="myElement" style="position: absolute">
This stays at the top
</div


$(window).scroll(function() {
$
('#myElement').css('top', $(this).scrollTop() + "px");
});