2015-02-10 66 views

回答

1
stringTemp.charAt(stringTemp.length-1); 

stringTemp.slice(-1); 
1

使用.split()

stringTemp.split('_')[1] 
相關問題