Home  >  Article  >  Web Front-end  >  jquery sample code for displaying divs in a loop_jquery

jquery sample code for displaying divs in a loop_jquery

WBOY
WBOYOriginal
2016-05-16 17:19:331262browse

Just look at the example

Copy the code The code is as follows:

for(var p=1; p< =5; p ){
$("#properties" p).show();
//There are five divs with IDs below: properties1, properties2, properties3, properties4, properties5
//us Using one statement, the following five divs are displayed successfully.
}
}




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