ISNUMERIC1 jQeury isNumeric 함수를 이용한 숫자 여부 판단 jQeury의 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.. 2021. 8. 10. 이전 1 다음