JQ判断输入法

寻技术 JS脚本 / JAVA编程 2023年07月08日 112
<input name="zc_code" id="zc_code" type="text" value="" class="zc_code" maxlength="15"/>

<script>
function get_shurufa(){
    $('#zc_code').on('input', function() {
    if ($(this).prop('comStart')) return;  //中文输入过程中不截断
        console.log('当前输入:' + $(this).val());
    }).on('compositionstart', function(){
        $(this).prop('comStart', true);
        console.log('中文输入:开始->' + $(this).val());
    }).on('compositionend', function(){
        $(this).prop('comStart', false);
        console.log('中文输入:结束->'  + $(this).val());
    });
}
$(document).ready(function(){
    get_shurufa()
});
</script>


关闭

用微信“扫一扫”