摘要:
<div id="test" style="position:absolute"></div> $(document).ready(function(){ var menuYloc = $("#test").offset().top; $(window).scroll(function (){ var offsetTop = menuYloc + $(window).scrollTop() +"px"; $("#test").css({top : offsetTop}); 阅读全文
摘要:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <script src="js/jquery.js" type="te 阅读全文
摘要:
//设置多顶行的每个td的宽度$("#Tbl tr:eq(0) td").each(function (i){ $(this).width($("#" + divID + " table tr:eq(0) td:eq(" + i + ")").width());}); 阅读全文