js实现在字符串中提取数字 <br>function getNum(text){<br>var value = text.replace(/[^0-9]/ig,""); <br>경고(값);<br>}<br>