isNaN()实例

Posted tongguilin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了isNaN()实例相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>无标题文档</title>

<script>

window.onload = function (){

    var aInp = document.getElementsByTagName(‘input‘);

    var str = ‘‘;

    aInp[1].onclick = function (){

        str = aInp[0].value;

        // HTML 中拿到的内容,类型都是字符串

        // alert( typeof str );

 

        if( isNaN(str) ){

            alert( str + ‘不是数字‘ );

        }else{

            alert( str + ‘是数字‘ );

        }

    };

};

</script>

</head>

 

<body>

 

<input type="text" />

<input type="button" value="判断输入值是不是数字" />

 

</body>

</html>

以上是关于isNaN()实例的主要内容,如果未能解决你的问题,请参考以下文章

关于new操作符

Number.IsNaN() 比 isNaN() 更坏吗

np.isnan() == False,但 np.isnan() 不是 False

[ES2015] Number.isNaN instead of isNaN

函数isNaN()

js中isNaN和Number.isNaN的区别