js实现在字符串中提取数字_Javascript教程-查字典教程网
js实现在字符串中提取数字
js实现在字符串中提取数字
发布时间:2016-12-30 来源:查字典编辑
摘要:js实现在字符串中提取数字functiongetNum(text){varvalue=text.replace(/[^0-9]/ig,"")...

<!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" id="btn_getNum"/>

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

</body>

</html>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类