input中文输入不打断

//优惠券标题
    $('#CouponTitle').on('input', function() {
        if($(this).prop('comStart')) return; // 中文输入过程中不截断
        CouponTitle = $(this).val().trim();
        if(CouponTitle.length <= 9) {
            $(this).next().html(CouponTitle.length + "/9");
            $(".CouponTitleCard").html(CouponTitle).show();
        } else {
            CouponTitle = CouponTitle.substr(0, 9);
            $(this).val(CouponTitle);
            $(this).next().html(9 + "/9");
            $(".CouponTitleCard").html(CouponTitle).show();
            $(this).blur();
        }
    }).on('compositionstart', function() {
        $(this).prop('comStart', true);
        //中文输入开始
    }).on('compositionend', function() {
        $(this).prop('comStart', false);
        //中文输入结束
        CouponTitle = $(this).val().trim();
        if(CouponTitle.length <= 9) {
            $(this).next().html(CouponTitle.length + "/9");
            $(".CouponTitleCard").html(CouponTitle).show();
        } else {
            CouponTitle = CouponTitle.substr(0, 9);
            $(this).val(CouponTitle);
            $(this).next().html(9 + "/9");
            $(".CouponTitleCard").html(CouponTitle).show();
            $(this).blur();
        }
    });

 

posted @ 2018-03-21 11:39  loewe0202  阅读(229)  评论(0编辑  收藏  举报