2011년 1월 10일 월요일

jQuery : 자동 Tab 이동

 

[code as3]

 /**
  * function :  Move Tab         카테고리 Tab 이동
  *
  * param   :  move_url         이동할 url 명(input 의 id, name 명)    
  *  
  */
   function moveTab(move_url){
   alert(move_url);
   eval('$("#form 이름").attr("action",  "/이동할 path/' + move_url + '.do").submit();');
 }

[/code]

jQuery : 날짜 new Date()

var date = new Date();

var Today = new Array();

 

Today['Year'] = date.getFullYear();

Today['Month'] = date.getMonth();

Today['Day'] = date.getDate();