在 IE 和 Firefox 中都可以使用的最干净的方法是什么?
我的字符串看起来像这样sometext-20202
sometext-20202
现在sometext破折号后面的和整数可以是不同的长度。
sometext
我应该只使用substring和索引还是有其他方法?
substring
我将如何做到这一点:
// function you can use: function getSecondPart(str) { return str.split('-')[1]; } // use the function: alert(getSecondPart("sometext-20202"));