To convert a global variable to a local variable

Source: Internet
Author: User

Point DT shows the height of the DD, if the global variable will create a conflict, the solution is to change the global to localThere is a problem with-------global variables----------varFlag =true; $(". AccountList2 DT"). Click (function () {if(flag) {$ ( This). Next (). Animate ({height:"10px"}, -); }Else{         $( This). Next (). Animate ({height:"0"}, -); Flag=false; } Flag=!Flag; });-------This can be changed into a variable problem----------$(". AccountList2 DT"). each (function () {varFlag =true; $( This). Click (function () {if(flag) {$ ( This). Next (). Animate ({height:"10px"            },  -); } Else {            $( This). Next (). Animate ({height:"0"            },  -); Flag=false; } Flag= !Flag; });});---HTML---<dlclass="AccountList2"> <dt> Shareholder 0001</dt> <dd>........</dd> <dt> shareholder 0002</dt> <dd>........& Lt;/dd> <dt> shareholders 0003</dt> <dd>........</dd> </dl>

To convert a global variable to a local variable

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.