input实时监听

2018-09-27  本文已影响0人  LuckyJin
 <input class="mpp-edit-input mpp-edit-input-js" id="aTest" type="text" value="0.00" onclick="window.event.stopPropagation();">

//    使input文本框随其中内容而变化长度的方法
    $(function(){
        $('#aTest').bind('input propertychange', function() {
            var $this = $(this);
            console.log($this);
            var text_length = $this.val().length;//获取当前文本框的长度
            var current_width = parseInt(text_length) *13;//13是每个字符的长度
            console.log(current_width)
            $this.css("width",current_width+"px");
        });
    })
上一篇下一篇

猜你喜欢

热点阅读