2014年4月2日 星期三

indexOf and jQuery.inArray

indexOf 只適用在 IE9 以上

通用的方法可以選擇
jQuery.inArray( target, Array)

JavaScript中0為false

檢查value是否在Array


if jQuery.inArray( target, Array) > -1  : 存在
if jQuery.inArray( target, Array) < 0   : 不存在

等於

Array.indexOf(target) > -1 
Array.indexOf(target) < 0

沒有留言:

張貼留言