当前位置: 代码迷 >> Web前端 >> 让DIV随着滚动条移动
  详细解决方案

让DIV随着滚动条移动

热度:85   发布时间:2012-10-28 09:54:44.0
让DIV跟着滚动条移动
jQuery(window).scroll(
	function() {
		var bottomHeight =  "-"+document.documentElement.scrollTop;
		jQuery("#chatToolBar").css("bottom", bottomHeight + "px");
	}
);
?
  相关解决方案