摘要: 1。为table 的表头所在的tr增加属性: class="flowtitle" 2。增加样式表(可不添加任何样式): .flowtitle{}{} 3。添加js脚本: 1//标题栏的自动浮动效果 2var oldTop = 0; 3var trs; 4var arrTrs = new Array(); 5function onScroll() 6{ 7 if(arrTr... 阅读全文
posted @ 2008-01-11 21:26 jacktu 阅读(4987) 评论(1) 推荐(1)
摘要: 用如下代码替换: var top = (document.documentElement && document.documentElement.scrollTop) ? document.documentElement.scrollTop : document.body.scrollTop; 阅读全文
posted @ 2008-01-11 18:42 jacktu 阅读(213) 评论(0) 推荐(0)