2011-02-09 5 views

답변

1

하이 잭 첫 페이지

$(document).ready(function() { 
      $('input[type="submit"]').attr('disabled', 'disabled'); 
      $('input[type="text"]').keypress(function() { 
       if ($(this).val != '') { 
        $('input[type="submit"]').removeAttr('disabled'); 
       } 
      }); 
     }); 
의 헤더 부분에 다음과 같은 jQuery 코드를 추가 한 후 템플릿에 로그인 컨트롤을 변환
관련 문제