7.1.19 鼠标的事件 键盘事件 聚焦和失焦

 

1. 加载页面就获取焦点

$(function(){

  //加载页面就获取焦点

  $('input[type=text]').focus();

  

  //2秒后失去焦点

  setTimeout(function(){

    $('input[type=text]').blur();

  },2000)

  

  //获取焦点事件

  $('input[type=text]').focus(function(){

    console.log('获取焦点')

  })

  //失去焦点事件

  $('input[type=text]').blur(function(){

    console.log('获取焦点')

  })

});

 

键盘事件:

 

posted @ 2018-09-20 11:01  beallaliu  阅读(534)  评论(0编辑  收藏  举报