美文网首页
即时搜索

即时搜索

作者: 笨笨的小蜗牛_用生命奔跑 | 来源:发表于2018-03-19 17:08 被阅读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);  

            });  

    相关文章

      网友评论

          本文标题:即时搜索

          本文链接:https://www.haomeiwen.com/subject/oqppqftx.html