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();
        }
    });
相关文章
相关标签/搜索