我有一个包含50行的文件。我需要一次显示10行,然后是用户的动作,就像他请求页面一样..说第2页。我显示接下来的10行..我在js中调用了一个函数:
像:
setRow(rowID);
// id是要显示行的no ..即要显示来自rowId的10行......它是从onclick事件中调用的......
像这样: <input type = "button" vlaue = "1" onclick = "setRow(1);
“&gt;
function setRow(val id) {
display 10 rows from id;
}
我尝试使用:document.get ..... ById('')。innerHTML ......但是这不起作用..
我怎么能这样做?
答案 0 :(得分:0)
如果你的行在id ='mytable'的表中
您可以使用此jQuery脚本:
function setRow(iStart, iEnd)
{
$('#mytable tr').each(function(i){
if(i>=iStart && i<=iEnd) $(this).fadeIn();
else $(this).hide();
});
}