Simple menu code folding Based on JQuery

Source: Internet
Author: User

The menu is Level 2 and collapsed during initialization. Click the title of the item to display the Level 2 list.
The HTML code is as follows:
Copy codeThe Code is as follows: <body>
<Div class = "mainleftFAQ">
<Div class = "category">

</Div>
<Div id = "disp">
</Div>
<Div class = "bartitleFAQ">
<span class = "admintext11"> service management </span> </div>
<Div class = "FAQlist">
<Ul>
<Li> <a href = '#'> waiting for submission </a> </li>
<Li> <a href = '# 'title = ''> awaiting release </a> </li>
<Li> <a href = '# 'title = ''> formal project </a> </li>
<Li> <a href = '# 'title = ''> click here to add </a> </li> </ul>
</Div>
<Div class = "bartitleFAQ">
<span class = "admintext11"> Update process </span> </div>
<Div class = "FAQlist">
<Ul>
<Li> <a href = '#'> background search </a> </li>
<Li> <a href = '# 'title = ''> Update process </a> </li>
</Div>
<Div class = "bartitleFAQ">
<span class = "admintext11"> FAQ management </span> </div>
<Div class = "FAQlist">
<Ul>
<Li> <a href = '#'> waiting for submission </a> </li>
<Li> <a href = '# 'title = ''> awaiting release </a> </li>
<Li> <a href = '# 'title = ''> formal project </a> </li>
<Li> <a href = '# 'title = ''> click here to add </a> </li> </ul>
</Div>
<Div class = "bartitleFAQ">
<span class = "admintext11"> download management </span> </div>
<Div class = "FAQlist">
<Ul>
<Li> <a href = '#'> waiting for submission </a> </li>
<Li> <a href = '# 'title = ''> awaiting release </a> </li>
<Li> <a href = '# 'title = ''> formal project </a> </li>
<Li> <a href = '# 'title = ''> click here to add </a> </li> </ul>
</Div>
<Div class = "bartitleFAQ">
<span class = "admintext11"> back to home </span> </div>
</Div>
</Body>

Among them, JQUERY script can achieve the desired effect with just a few simple lines. The Code is as follows:Copy codeThe Code is as follows: <script language = "javascript" type = "text/javascript">
$ (Document). ready (function (){
// Set the level-2 menu to invisible
$ (". FAQlist" ).css ("display", "none ");
// Click the event triggered by the level-1 menu
$ (". BartitleFAQ"). click (function (){
$ (". FAQlist" ).css ("display", "none"); // set all level-2 menus to invisible
$ (This). next (". FAQlist" ).css ("display", "block"); // set the level-2 menu of the current level-1 menu to visible
})
})
</Script>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.