1
Paranoid 2010-12-14 17:19:42 +08:00
这个基本上是利用程序实现滴,而非js.
实现原理主要看你用什么来排序,如果来排序的这个值是唯一的,那很简单,不是就很复杂了.~~~~~. |
2
CoX 2010-12-14 17:22:30 +08:00
location.href='/t/'+(praseInt(tid)+1);
|
3
2014 OP |
7
chone 2010-12-14 18:40:34 +08:00
javascript数字和string相加的时候数字会被"强制转换"为string再相加,所以需要把string先转换成数字2L那样或者 new Number('1')+1
|
8
yleo77 2010-12-14 19:19:15 +08:00
location.href='/t/'+(~~tid+1);
试试。。 |