排他思想
Posted lifenghe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了排他思想相关的知识,希望对你有一定的参考价值。
排他思想:
点击其中一个时其他的变,就自己不变 如图:
html和css代码
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 </head> 7 <body> 8 <img src="./images/yellow.png" alt=""> 9 <img src="./images/yellow.png" alt=""> 10 <img src="./images/yellow.png" alt=""> 11 <img src="./images/yellow.png" alt=""> 12 <img src="./images/yellow.png" alt=""> 13 </body> 14 </html>
效果图
js代码
// 排他思想: // 第一种 // 先把所有的都改变,在单独改变自己本身 // 第二种 // 遍历时判断是不是点击的那个,不是就变一样的,是就不变 // 获取img对象节点 let imgs = document.querySelectorAll(‘img‘); // 第一种: for (let i = 0 ;i<imgs.length;i++){ imgs[i].onclick = function () { for (let i = 0;i<imgs.length;i++){ imgs[i].src = ‘./images/green.png‘; } this. src = ‘./images/yellow.png‘; } }
// 第二种: for (let i = 0 ;i<imgs.length;i++){ imgs[i].onclick = function () { for (let j = 0;j<imgs.length;j++){ if (imgs[j] == this){ this. src = ‘./images/yellow.png‘; } else { imgs[j].src = ‘./images/green.png‘; } } } }
以上是关于排他思想的主要内容,如果未能解决你的问题,请参考以下文章