复制代码 代码如下:
function showAccomplishmentTableRow(){
$("#accomplishmenttable tr:hidden").first().show(2000,function(){
showAccomplishmentTableRow();
});
if($("#accomplishmenttable tr:hidden").size()==0){
$("#accomplishmenttable").next().attr("onclick","hideAccomplishmentTableRow()").text("Less");
}
}
function hideAccomplishmentTableRow(){
if($("#accomplishmenttable tr:visible").size()<=3){
$("#accomplishmenttable").next().attr("onclick","showAccomplishmentTableRow()").text("More");
return;
}
$("#accomplishmenttable tr:visible").last().hide(2000,function(){
hideAccomplishmentTableRow();
});
}
html
复制代码 代码如下:
| MY ACCOMPLISHMENTS | |
|---|---|
| border_bottom1Pgreye7e7e7 | border_bottom1Pgreye7e7e7 |
| border_bottom1Pgreye7e7e7 | border_bottom1Pgreye7e7e7 |
More



