请告知我如何取一个数字的最后两位或一位数。
例如:
17年12月5日
158/63/0
在上面的数字中我只想在第一个Eg中选择17,在第二个Eg中选择0。
苏雷什
答案 0 :(得分:1)
您可以使用JavaScript split()
。
var number = "12/5/17".split("/"); // Will return an array: ["12","5","17"]
number[number.length-1]; // Will return the last number in the set
使用[number-1]
是必要的,因为数组是从0开始的。
希望这有帮助。
-CE