码迷,mamicode.com
首页 > Web开发 > 详细

jQuery判断输入法和非输入法输入

时间:2018-06-17 15:09:07      阅读:737      评论:0      收藏:0      [点我收藏+]

标签:function   tar   end   需要   query   TE   console   func   完成   

需求背景:

  页面需要输入完成后自动查询。

解决方案:

$(‘input‘).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());
});

  

jQuery判断输入法和非输入法输入

标签:function   tar   end   需要   query   TE   console   func   完成   

原文地址:https://www.cnblogs.com/boeing-bick/p/9192848.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!