js判断是不是为小数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js判断是不是为小数相关的知识,希望对你有一定的参考价值。
参考技术A function check(c)var r= /^[+-]?[1-9]?[0-9]*\\.[0-9]*$/;
return r.test(c);
//它可以包含 + - 号,不需要的话,去掉 [+-]?
判断是否是小数的方法:12345function check(c) var r= /^[+-]?[1-9]?[0-9]*\\.[0-9]*$/; return r.test(c); //它可以包含 + - 号,不需要的话,去掉 [+-]?
JS判断的编程如下:
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>menu</title>
<style type="text/css">
</style>
<script type="text/javascript">
var num = 1.11;
var reg = /.*\\..*/;
alert (reg.test(num));
</script>
</head>
<body>
</body>
</html>
if(a-parseInt(a)==0)
Debug.Log("是整数");
else
Debug.Log("不是整数");
变量A-parseInt(变量A)==0,真就是整数,假就是有小数点 参考技术D function hasDot(num)
if (!isNaN(num))
return ((num + '').indexOf('.') != -1) ? true : false;
js判断先判断是不是是数字或者小数,只能精确到小数点后两位,如果不是就提示,要求重新填写
js判断先判断是否是数字或者小数,只能精确到小数点后两位,如果不是就提示,要求重新填写
直接弄个例子
<head>
<title>Untitled Page</title>
<script src="http://code.jquery.com/jquery-1.11.1.min.js" type="text/javascript"></script>
</head>
<body>
<input id="txt_num" type="text" />
<input id="btn_submit" type="button" value="提交" />
<script type="text/javascript">
$(function ()
$("#btn_submit").click(function()
var num = $("#txt_num").val();
if(!isNaN(num))
var dot = num.indexOf(".");
if(dot != -1)
var dotCnt = num.substring(dot+1,num.length);
if(dotCnt.length > 2)
alert("小数位已超过2位!");
else
alert("数字不合法!");
);
);
</script>
</body>
</html>
这个应该能实现楼主的需求~!
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script type="text/javascript">
window.onload = function()
var box = document.querySelector("input[type=text]");
var button = document.querySelector("input[type=button]");
button.onclick = function()
var v = box.value;
if(v)
v = parseFloat(v);
alert(Math.round(v*100)/100);
else
alert("请填写数字");
</script>
</head>
<body>
<input type="text" autofocus />
<input type="button" value="提交" />
</body>
</html>
以上是关于js判断是不是为小数的主要内容,如果未能解决你的问题,请参考以下文章
js正则表达式 判断输入框是不是为正整数或者正整数保留两位小数
Android求解,求一个判断是不是为数字的正则表达式,要求全是数字,不能有特殊符号,汉字,字母,小数也不行