Home  >  Article  >  Web Front-end  >  Detailed explanation of jQuery monitoring text box events and processing steps

Detailed explanation of jQuery monitoring text box events and processing steps

php中世界最好的语言
php中世界最好的语言Original
2018-04-26 13:59:451433browse

This time I will bring you jQuery Detailed explanation of monitoring text box events and processing steps. What are the precautions for using jQuery to monitor text box events. The following is a practical case. Let’s take a look. take a look.

//事情委托
$(document)
 .on('input propertychange', '#query', function(){
  var input = $(this).val();
  show(input);
 });
 var show = function(txt){
  var info = '监听:' + txt + '

'   + '相关搜索:
' + showTags(txt);   $('.info').html(info);  }  var showTags = function(txt){   var tag = '';   if(txt.length){    for (var i = 0; i < 3; i++) { tag += ''+txt+'相关'+i+'';    };   }   return tag; }

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

jQuery dynamic operation of Table cells

Jquery Mobile custom button icon steps detailed explanation

The above is the detailed content of Detailed explanation of jQuery monitoring text box events and processing steps. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn