jquery to check when a someone starts typing in to a field

前端 未结 3 705
没有蜡笔的小新
没有蜡笔的小新 2021-02-20 11:49
$(\'a#next\').click(function() {
    var tags = $(\'input[name=tags]\');

    if(tags.val()==\'\'){

    tags.addClass(\'hightlight\');  
    return false; 
    }else{
          


        
3条回答
  •  暖寄归人
    2021-02-20 12:31

    You want the focus event.

      $('a#next').focus(function() {
          $('#formcont').fadeIn('slow');
      });
    

提交回复
热议问题