您好,登錄后才能下訂單哦!
這篇文章主要介紹“JS顯示隱藏功能怎么實(shí)現(xiàn)”,在日常操作中,相信很多人在JS顯示隱藏功能怎么實(shí)現(xiàn)問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”JS顯示隱藏功能怎么實(shí)現(xiàn)”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
效果:
點(diǎn)擊按鈕可以將紅色區(qū)域隱藏掉,并且可以將按鈕文字顯示成顯示。代碼如下
<!DOCTYPE html> <!--文檔聲明--><html lang="en"> <!--根節(jié)點(diǎn)--> <head><!--樹枝節(jié)點(diǎn)--><!--父節(jié)點(diǎn)--> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title><!--子節(jié)點(diǎn)--> </head> <style> #box { width:200px; height:200px; background-color:red; } .hidden { display: none; } .show { display: block; } </style> <body> <input id="btn" type="button" value="隱藏"> <div id="box"></div> ESlint 查詢代碼規(guī)范的工具 <script> //1 獲取元素 var btn = document.getElementById('btn'); var box = document.getElementById('box'); var isshow = true; // 2 給按鈕注冊(cè)點(diǎn)擊事件 btn.onclick = function(){ //當(dāng)前box 是顯示隱藏 if(isshow){ // 3 控制div的顯示隱藏 box.className ='hidden'; //修改按鈕上的文字 btn.value = '顯示'; isshow = false; }else{ // 3 控制div的顯示隱藏 box.className ='show'; //修改按鈕上的文字 //在事件處理函數(shù)中 this-- 事件源 觸發(fā)事件的對(duì)象 btn.value = '隱藏'; isshow = true; } }; // 函數(shù)中的this -->window對(duì)象 // function fn(){ // console.log(this) // } // fn(); // 方法中的 this --> 是調(diào)用該方法的對(duì)象 // var obj = { // name = 'zs', // say:function(){ // console.log(this); // } // } // obj.say(); //構(gòu)造函數(shù)中的this -->當(dāng)前對(duì)象 // 事件處理函數(shù)中的this --> 觸發(fā)事件的對(duì)象事件源 </script> </body></html>
到此,關(guān)于“JS顯示隱藏功能怎么實(shí)現(xiàn)”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。