//检测数组中是否存在某个字符串
function in_array(search,array){ for(var i in array){ if(array[i]==search){ return true; } } return false; }