美文网首页
中文输入法不触发keyUp

中文输入法不触发keyUp

作者: smallseed | 来源:发表于2018-06-07 10:27 被阅读0次

    //先判断浏览器是不是万恶的IE,没办法,写的东西也有IE使用者

          var bind_name = 'input';

          if (navigator.userAgent.indexOf("MSIE") != -1){

            bind_name = 'propertychange';

          }

          $('#inputorp_i').bind(bind_name, function(){

            $('#inputorp_s').text($(this).val());

          })

    相关文章

      网友评论

          本文标题:中文输入法不触发keyUp

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