當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery jQuery.isNumeric()用法及代碼示例


用法
jQuery.isNumeric( value ) => Boolean

不推薦使用的版本:3.3

說明:確定其參數是否表示 JavaScript 數字。

  • 添加的版本:1.7jQuery.isNumeric( value )

    • value
      類型:Anything
      要測試的值。

注意:此 API 在 jQuery 3.3 中已被棄用。

$.isNumeric() 方法檢查其參數是否表示數值。如果是,則返回 true 。否則返回 false 。參數可以是任何類型。

從 jQuery 3.0 開始,$.isNumeric() 僅在參數的類型為 number 或者它的類型為 string 並且可以強製轉換為有限數時才返回 true。在所有其他情況下,它返回 false

例子:

具有各種輸入的 $.isNumeric 的示例返回值。

// true (numeric)
$.isNumeric( "-10" )
$.isNumeric( "0" )
$.isNumeric( 0xFF )
$.isNumeric( "0xFF" )
$.isNumeric( "8e5" )
$.isNumeric( "3.1415" )
$.isNumeric( +10 )
$.isNumeric( 0144 )
 
// false (non-numeric)
$.isNumeric( "-0x42" )
$.isNumeric( "7.2acdgs" )
$.isNumeric( "" )
$.isNumeric( {} )
$.isNumeric( NaN )
$.isNumeric( null )
$.isNumeric( true )
$.isNumeric( Infinity )
$.isNumeric( undefined )

相關用法


注:本文由純淨天空篩選整理自jquery.com大神的英文原創作品 jQuery.isNumeric()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。