Home  >  Article  >  Web Front-end  >  The solution to the problem that the change method of File input in jquery (live) only works once_jquery

The solution to the problem that the change method of File input in jquery (live) only works once_jquery

WBOY
WBOYOriginal
2016-05-16 18:00:36990browse

Wrong writing

Copy code The code is as follows:

$("#uploadImg").click( function(){
 do something
});

Correct writing
Copy code The code is as follows:

$("#uploadImg").live('change',function(){
do something
});
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