您好,登錄后才能下訂單哦!
今天開(kāi)始學(xué)習(xí)DOM操作,下面寫(xiě)一個(gè)小案例來(lái)鞏固下知識(shí)點(diǎn).
DOM: document object model (文檔對(duì)象模型)
根據(jù)id獲取頁(yè)面元素 : 如: var xx = document.getElementById("id");
根據(jù)標(biāo)簽獲取元素: 如: var xx = document.getElementsByTagName("div");
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> * { margin: 0; padding: 0; } #outer { width: 500px; /*設(shè)置上邊距50px 水平居中*/ margin: 50px auto; /*設(shè)置邊框*/ padding: 10px; background-color: greenyellow; /*設(shè)置文本居中*/ text-align: center; } img { width: 500px; } </style> <script> //btn 為按鈕id clickEventFunction 為點(diǎn)擊后執(zhí)行的操作函數(shù) function addClick(btn, clickEventFunction) { var myButton = document.getElementById(btn); myButton.onclick = clickEventFunction; }; window.onload = function () { (function () { var pics = ["imgs/1.png", "imgs/2.png", "imgs/3.png"]; var index = 0; showPicNum(index); var img = document.getElementsByTagName("img")[0]; // var btn1 = document.getElementById("btn1"); var btn2 = document.getElementById("btn2"); addClick("btn1", function () { index--; if (index <= -1) { index = pics.length - 1; } console.log(index + " ----- "); img.src = pics[index]; showPicNum(index); }); addClick("btn2", function () { index++; if (index >= pics.length) { index = 0; } console.log(index + " ++++++++ "); img.src = pics[index]; showPicNum(index); }); // // btn1.onclick = function () { // index --; // if(index <= -1){ // index = pics.length - 1; // } // console.log(index + " ----- "); // img.src = pics[index]; // showPicNum(index); // }; // btn2.onclick = function () { // index ++; // if(index >= pics.length){ // index = 0; // } // console.log(index + " ++++++++ "); // img.src = pics[index]; // showPicNum(index); // }; console.log(index); /** * 展示當(dāng)前圖片為第幾張 * @param index 當(dāng)前圖片索引 */ function showPicNum(index) { var descrs = document.getElementById("discs"); descrs.innerText = "一共" + pics.length + "張圖片,當(dāng)前第" + ++index + "張"; } }()) }; </script> </head> <body> <div id="outer"> <p id="discs"></p> <img src="imgs/1.png"/><br> <button id="btn1" type="button" value="上一張">上一張</button> <button id="btn2" type="button" value="下一張">下一張</button> </div> </body> </html>
文檔目錄:
效果如下:
以上所述是小編給大家介紹的JavaScriptDOM圖片切換小案例詳解整合,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!
免責(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)容。