Heim  >  Artikel  >  Web-Frontend  >  javaScript 判断字符串是否为数字的简单方法_javascript技巧

javaScript 判断字符串是否为数字的简单方法_javascript技巧

WBOY
WBOYOriginal
2016-05-16 18:49:212544Durchsuche
复制代码 代码如下:

parseInt("Hello",10);//return NAN  
parseInt("110",10);//return 110 

所以简单的判断字符串是否为数字的方法就是利用isNaN(),如果返回true,则该字符串不为数字,否则为数字
复制代码 代码如下:

isNaN(parseInt("Hello",10));//true;  
isNaN(parseInt("110",10));//false; 

注:不能利用以下方式判断:
复制代码 代码如下:

parseInt("Hello",10)==NaN;//return false  
parseInt("110",10)==NaN;//return false 

因为NaN和自身并不想等,这个比较特殊,判断NaN的方式利用isNaN();
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn