js实现在字符串中提取数字

js实现在字符串中提取数字。需要的朋友可以过来参考下,希望对大家有所帮助

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>js实现在字符串中提取数字</title>
<script language="javascript" type="text/javascript">
function getNum(text){
var value = text.replace(/[^0-9]/ig,"");
alert(value);
}
</script>
</head>


<body>
<input type="text"/>
<input type="button" value="得到数字"/>
</body>
</html>

您可能感兴趣的文章:

相关文章

最新评论

站长推荐

正版 Windows 10

正版Windows 10 家庭/专业版,操作系统限时抢购[¥1088→¥248]

站长推荐

正版 Office 软件

Microsoft Office 2016/2019/365 正版最低价仅需[ ¥148元]

大家感兴趣的内容

最近更新的内容

常用在线小工具

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdzwjs.html