스페이스(space) 유무 체크

function SpaceChk( str )
{
  if(str.search(/\s/) != -1){
    return true;
  }else {
    return "";
  }
}

Table of contents 목차

평점을 남겨주세요
평점 : 2.5
총 투표수 : 1