parseInt("013")默认就是10进制故:1*Math.pow(10,1) + 3 * Math.pow(10,0)就是10+3=13现在要是10就是7进制1*Math.pow(7,1) + 3 * Math.pow(7,0)7+3=10parseInt("013",7)