html⾥table⾃动滚动,html中表table⾏循环滚动例⼦(⽰例代
码)
滚动表格
.table{
width: 100%;
left:30%;
border-collapse:collapse;
border-spacing:0;
}
.fixedThead{
display: block;
width: 100%;
}
.scrollTbody{
display: block;
height: 316px;
overflow: hidden;
width: 100%;
}
.table td {
width: 300px;
border-bottom: #333 1px dashed;
padding: 5px;
}
.table th {
width: 300px;
border-bottom: #333 1px dashed;
border-top: #333 1px dashed;
padding: 5px;
line-height:24px;
}
.table tr{html滚动效果代码
border-bottom: #333 1px dashed;
line-height:24px;
padding: 5px;
}
thead.fixedThead tr th:last-child {
color:#FF0000;
}
//先在table的最后增加⼀⾏,然后再把第⼀⾏中的数据填充到新增加的⾏中,最后再删除table的第⼀⾏
function change(table){
var row = table.ws.length);//在table的最后增加⼀⾏,ws.length是表格的总⾏数
for(j=0;j
var cell = row.insertCell(j);//给新插⼊的⾏中添加单元格
cell.height = "24px";//⼀个单元格的⾼度,跟css样式中的line-height⾼度⼀样
cell.innerHTML = ws[0].cells[j].innerHTML;//设置新单元格的内容,这个根据需要,⾃⼰设置
}
table.deleteRow(0);//删除table的第⼀⾏
};
function tableInterval(){
var table = ElementById("test");//获得表格
change(table);//执⾏表格change函数,删除第⼀⾏,最后增加⼀⾏,类似⾏滚动
};
setInterval("tableInterval()",2000);//每隔2秒执⾏⼀次change函数,相当于table在向上滚动⼀样
滚动表格
姓名性别年龄
张三男18李四男20王昕⼥19李佳⼥21张三男18李四男20王昕⼥19李佳⼥21张三男18李四男20王昕⼥19李佳⼥21张三男18李四男20王昕⼥19李佳⼥21张三男18李四男20王昕⼥19李佳⼥21张三男18李四男20王昕⼥19李佳⼥21张三男18李四男20王昕⼥19李佳⼥21

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。