내용 변화에 따라 input 텍스트 상자 길이 변경

1219 단어 상용 소지식
propertychange - 속성 변경 이벤트
<script type="text/javascript">
$(function(){
    $('.input').bind('input propertychange',function(){
        var obj = $(this);
        var text_length = obj.val().length;  // 
        var width = parseInt(text_length)*12; // 12 , 
        obj.css('width',width+'px');
    });
})
script>

좋은 웹페이지 즐겨찾기