JavaScript DOM Action case click button to display with a class style and hide Div

Source: Internet
Author: User

<!DOCTYPE HTML><HTMLLang= "en"><Head>    <MetaCharSet= "UTF-8">    <title></title>    <style>Div{width:300px;Height:300px;Background-color:Pink;        }. CLS{Display:None;        }    </style></Head><Body><inputtype= "button"value= "hidden"ID= "BT"/><DivID= "DV"></Div><Scriptsrc= "Common.js"></Script><Script>    //Click the button to show and hide the div by way of a class stylemy$ ("BT"). onclick= function () {        //Judging Div uses a class style applied        if(my$ ("DV"). ClassName!= "CLS") {            //now it's displayed, click Hidemy$ ("DV"). ClassName= "CLS"; my$ ("BT"). Value= "Show"; } Else {            //now it's hidden, click Showmy$ ("DV"). ClassName= ""; my$ ("BT"). Value= "Hidden"; }    };</Script></Body></HTML>

JavaScript DOM Action case click button to display with a class style and hide Div

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.