Description: Determines whether its argument is a number.
1 $.isNumeric( "-10" ); // true
2 $.isNumeric( 16 ); // true
3 $.isNumeric( 0xFF ); // true
4 $.isNumeric( "0xFF" ); // true
5 $.isNumeric( "8e5" ); // true (exponential notation string)
6 $.isNumeric( 3.1415 ); // true
7 $.isNumeric( +10 ); // true
8 $.isNumeric( 0144 ); // true (octal integer literal)
9 $.isNumeric( "" ); // false
10 $.isNumeric({}); // false (empty object)
11 $.isNumeric( NaN ); // false
12 $.isNumeric( null ); // false
13 $.isNumeric( true ); // false
14 $.isNumeric( Infinity ); // false
15 $.isNumeric( undefined ); // false
原文:http://www.cnblogs.com/hzj680539/p/5033763.html