百度首页换一换功能js实现


以上是布局思路

js代码如下:

window.onload = function() { var oDiv = document.querySelectorAll(".content div"), change = document.querySelector(".exchange"), index = 0; change.onclick = function() { for (var i = 0; len = oDiv.length,i<len; i++) { oDiv[i].className = ""; } index++; // index等于数组的长度 if (index == len) index=0; oDiv[index].className = "active"; } }

posted @ 2021-01-28 11:42  珊迪·奇克斯  阅读(853)  评论(0编辑  收藏  举报