js取字符串中的数字

来源:互联网 发布:怎样把淘宝网放到桌面 编辑:程序博客网 时间:2024/06/09 15:45
var i = 'abc123';

alert(i.match(/\d+/));