티타늄으로 작업하고 있는데 코드는 다음과 같습니다.
var currentData = new Array();
if(currentData[index]!==""||currentData[index]!==null||currentData[index]!=='null')
{
Ti.API.info("is exists " + currentData[index]);
return true;
}
else
{
return false;
}
배열에 인덱스를 전달하고 currentData
있습니다. 위의 코드를 사용하여 존재하지 않는 요소를 여전히 감지 할 수 없습니다.
&&
개별 조건 사이에 연결 ( ) 이 필요 합니다.