手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >js实现在字符串中提取数字
js实现在字符串中提取数字
摘要: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>

【js实现在字符串中提取数字】相关文章:

javascript字符串与数组转换汇总

js获取字符串字节数方法小结

jQuery获取字符串中出现最多的数

javascript实现行拖动的方法

javascript实现树形菜单的方法

js实现两点之间画线的方法

Javascipt中处理字符串之big()方法的使用

javascript实现炫酷的拖动分页

js去除字符串里中文与空格的例子

原生javascript实现解析XML文档与字符串

精品推荐
分类导航