如何在jQuery中使用子字符串进行alpha数字?

时间:2013-07-12 04:27:36

标签: jquery

我的图像名称为img-1,img-2等等。我想对其进行子串并递增num然后循环遍历所有图像。我如何实现它。我使用jQuery。

1 个答案:

答案 0 :(得分:2)

我想,不是Substring,在这种情况下使用split

var splitter= imgName.split('-'); 
var numberString = splitter[1]; //gives second part  .i.e number
var integerNum  =parseInt(numberString); //here numberString converts to integer
integerNum++;  // increment 

将上面的代码放在循环中并使用它。