내용 변화에 따라 input 텍스트 상자 길이 변경
1219 단어 상용 소지식
<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>