我正在使用这个写得不好的代码在html中添加或减去一个数字。
第一个索引的输出结果如下:
1/6
在最后一个索引上,它将如下所示:
6/6
这与pageslide.js一起使用。这是我对内置分页系统的替代方案。 反正有没有写这个更聪明?
if(index == '1'){
$( ".sectionCurrent" ).text("1/ ");
}
if(index == '2'){
$( ".sectionCurrent" ).text("2/ ");
}
if(index == '3'){
$( ".sectionCurrent" ).text("3/ ");
}
if(index == '4'){
$( ".sectionCurrent" ).text("4/ ");
}
if(index == '5'){
$( ".sectionCurrent" ).text("5/ ");
}
if(index == '6'){
$( ".sectionCurrent" ).text("6/ ");
}
答案 0 :(得分:2)
如果您不需要过滤或检查值,请转到:
$( ".sectionCurrent" ).text(index + "/ ");
如果值必须在1/6之间:
if(index > 0 && < 7){
$( ".sectionCurrent" ).text(index + "/ ");
}