jQuery.isNumeric()方法

2018-11-22 17:01 更新

jQuery.isNumeric()方法

jQuery 雜項(xiàng)方法jQuery 雜項(xiàng)方法

實(shí)例

判斷輸入值類型

$(function () {
    function
fun( html ){
        document
.body.innerHTML += "<br>" + html;
   
}
    //
true
   
fun($.isNumeric( "-10" ));
    fun
($.isNumeric( "0" ));
    fun
($.isNumeric( 0xFF ));
    fun
($.isNumeric( "0xFF" ));
    fun
($.isNumeric( "8e5" ));
   
fun($.isNumeric( "3.1415" ));
    fun
($.isNumeric( +10 ));
    fun
($.isNumeric( 0144 ));
    //
false
    fun
($.isNumeric( "-0x42" ));
    fun
($.isNumeric( "7.2acdgs" ));
    fun
($.isNumeric( "" ));
   
fun($.isNumeric( {} ));
    fun
($.isNumeric( NaN ));
    fun
($.isNumeric( null ));
    fun
($.isNumeric( true ));
    fun
($.isNumeric( Infinity ));
    fun
($.isNumeric( undefined ));
})

嘗試一下 ?

定義和用法

$.isNumeric() 函數(shù)用于判斷指定參數(shù)是否是一個(gè)數(shù)字值。

注意:在jQuery 3.0中,$.isNumeric()方法只有接收number類型的參數(shù),或者是可以被強(qiáng)制為有限數(shù)值的 string類型的參數(shù)時(shí),才會(huì)返回true,否則返回false。


語(yǔ)法

$.isNumeric( value )

參數(shù)描述
value任意類型 需要進(jìn)行判斷的任意值。


jQuery 雜項(xiàng)方法jQuery 雜項(xiàng)方法

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)