Focus event in Juery:
$("#id") .focus(function(){
});
Out of focus event:
$("#id").blur(function(){
});
But the text change event cannot be like this Write:
$("#id").change( function(){
});
The text change event can be written like this, propertychange is an event triggered when the property changes
$("#id").bind("propertychange",function() {
});
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