即时搜索

2018-03-19  本文已影响0人  笨笨的小蜗牛_用生命奔跑

即时搜索需要用到input的propertychange,用法如下:

$('#addressSearch').on('input propertychange', function() {   });  

获取select的值。可以用change方法监听option内的值的变化

例如:

$('.select').change(function(){})

获取第一个option的值:$('.select    option:first').val()

获取选中的option的值:$('.select    option:selected').val();

字数控制:

$("#packagingDesc").on("propertychange input", function() {  

        var $this = $(this),  

        _val = $this.val(),  

        count ="";  

        if (_val.length > 512) {  

                $this.val(_val.substring(0, 512));  

            }  

        count =512 - $this.val().length;  

         $("#text-count").text(count);  

        });  

上一篇下一篇

猜你喜欢

热点阅读