js截取字符串中数字

var str='abc123';
 for(var i=str.length-1;i>=0;i--){
  if(!isNaN(str.charAt(i))){
   alert(str.charAt(i));
  }
 }

你可能感兴趣的:(JavaScript)