JavaScript排他思想怎样理解,实现方法是什么
Admin 2022-06-21 群英技术资讯 336 次浏览
在如果有同一组元素,我们想要某一个元素实现某种样式,这时需要怎么办呢? 这里就要用到循环的排他思想。
排他思想的算法就是:
排除掉其他的(包括自己),然后再给自己设置想要实现的效果。总而言之,排他思想的实现步骤就是所有元素全部清除与设置当前元素。
可以简单理解为:
需要注意的是:这里的顺序不能颠倒。
比如,页面有五个按钮,我们想要给它实现循环点击事件:当点到哪个按钮,就让哪个按钮变色,应该怎样操作呢?
1、我们先创建五个按钮。
如下所示:
<button>按钮1</button> <button>按钮2</button> <button>按钮3</button> <button>按钮4</button> <button>按钮5</button>
2、获取元素
<script> //获取元素 var btn = document.getElementsByTagName('button'); console.log(btn); </script>
3、循环遍历打印按钮
for(var i =0; i<btn.length;i++){ console.log(btn[i] }
4、在第一个for
循环里面给每个按钮添加点击事件。首先在内循环里面清除掉所有按钮的样式,然后在外循环里给当前点击的按钮添加样式。
btn[i].onclick = function(){ for(var j =0;j<btn.length;j++){ btn[j].style.backgroundColor = ''; } this.style.backgroundColor = 'blue'; }
最终效果为:
接下来我们举几个例子看看吧!
代码如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <!-- 编写一个完整的tab切换效果的页面 --> <style> * { margin: 0; padding: 0; } .box_1 { width: 800px; height: 400px; background-color:rgb(141, 169, 173); margin: 100px auto; } ul { position:absolute; top: 64px; left:220px; height: 35px; line-height: 35px; text-align: center; } li { width: 80px; height: 35px; list-style: none; float: left; border: 1px solid #ccc; margin-left: 2px; border-top-left-radius: 6px; border-top-right-radius: 6px ; } .li1 { font-weight: 700; color: black; border-bottom: none; background-color: skyblue; cursor: pointer; } .item{ display:none; } </style> </head> <body> <div class = 'box'> <ul> <li class='li1'>标签一</li> <li>标签二</li> <li class = 'li2' style="width:150px">自适应宽度的标签</li> </ul> <div class="box_1"> <div class="item" style = "display:block">第一个标签的内容</div> <div class="item">第二个标签的内容</div> <div class="item">自适应宽度的标签的内容</div> </div> </div> <script> var li = document.querySelectorAll('li'); console.log(li); var item = document.querySelectorAll('.item'); console.log(item); for(var i =0;i<li.length;i++){ li[i].setAttribute('index',i); li[i].onclick = function(){ for(var j =0;j<item.length;j++){ li[j].className = ''; console.log(li[i]); } this.className = 'li1'; var index = this.getAttribute('index'); console.log(index); for(var k = 0;k<item.length;k++){ item[k].style.display='none'; } item[index].style.display = 'block'; } } </script> </body> </html>
实现效果为:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .box{ width: 700px; margin: 10px auto; } .bar { width:200px; height: 15px; padding: 1px; background-color: rgb(250, 249, 249); } .bar_in{ width:7%; height:100%; transition: width 0.5s; } .bar_in1 { background-color: orange; } .bar_in2{ background-color: yellow; } .bar_in3{ background-color: brown; } .bar_in4{ background-color: chocolate; } .bar_in5{ background-color: green; } .bar_in6{ background-color: blue; } .bar_in7{ background-color: cornflowerblue; } .bar_in8{ background-color: deeppink; } .bar_in9{ background-color: rgb(171, 204, 23); } .bar_in10{ background-color: red; } tr{ width:800px; height: 40px; } td{ font-size: 14px; width: 200px; line-height: 40px; border-bottom: 1px solid #ccc; } tr #no1{ width: 300px; } .header{ font-size: 16px; font-weight: 700; } .t1 { width: 500px; } span{ color:red; font-size: 14px; } </style> </head> <body> <div class="box"> <table> <tr> <td colspan="4" class= 'header'>你被“最美乡村女教师”感动了吗<span>(必选)</span></td> </tr> <tr> <td class='t1'><input type="checkbox" name="" >很感动,她很美</td> <td> <div class="bar"> <div class=" bar_in bar_in1"> </div> </div> </td> <td>0(0%)</td> </tr> <tr> <td class='t1'><input type="checkbox" name="" id="">很感动,她很美</td> <td> <div class="bar"> <div class=" bar_in bar_in2"> </div> </div> </td> <td>335733(96.16%)</td> </tr> <tr> <td class='t1'><input type="checkbox" name="" id="">没感觉,这样的事很多</td> <td> <div class="bar"> <div class="bar_in bar_in3"> </div> </div> </td> <td>4997(1.43%)</td> </tr> <tr> <td class='t1'><input type="checkbox" name="" id="">不感动,可能是炒作</td> <td> <div class="bar"> <div class="bar_in bar_in4"> </div> </div> </td> <td>8398(2.41%)</td> </tr> </table> <table> <tr> <td colspan="3" class= 'header'>你会愿意为李灵和她的学校做什么?<span>(必选)</span></td> </tr> <tr> <td class="t1"><input type="checkbox" name="" id="" >捐书给他们,让他们有个阅览室</td> <td> <div class="bar"> <div class=" bar_in bar_in5"> </div> </div> </td> <td>163002(45.89%)</td> </tr> <tr> <td><input type="checkbox" name="" id="">捐钱给他们,让他们修缮学校</td> <td> <div class="bar"> <div class="bar_in bar_in6"> </div> </div> </td> <td>52692(15.09%)</td> </tr> <tr> <td><input type="checkbox" name="" id="">向朋友讲述李灵的故事</td> <td> <div class="bar"> <div class="bar_in bar_in7"> </div> </div> </td> <td>118533(33.96%)</td> </tr> <tr> <td><input type="checkbox" name="" id="">什么都不会做</td> <td> <div class="bar"> <div class="bar_in bar_in8"> </div> </div> </td> <td>14881(4.26%)</td> </tr> <tr> <td><input type="checkbox" name="" id="">什么都不会做</td> <td> <div class="bar"> <div class="bar_in bar_in9"> </div> </div> </td> <td>0(0%)</td> </tr> <tr> <td><input type="checkbox" name="" id="">什么都不会做</td> <td> <div class="bar"> <div class="bar_in bar_in10"> </div> </div> </td> <td>0(0%)</td> </tr> </table> </div> <script> var input = document.querySelectorAll('input'); var barin = document.querySelectorAll('.bar_in'); var w = [10,98,30,25,50,22,38,30,34,20,20]; console.log(typeof(5+'%')); console.log(barin); console.log(input); for(var i =0;i<input.length;i++){ input[i].setAttribute('index',i) input[i].onclick = function(){ var index = this.getAttribute('index') barin[index].style.width= w[index]+'%'; } } </script> </body> </html>
实现效果为:
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
本文主要介绍了react hooks组件间的传值方式(使用ts),文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
目录常见的事件有:currentTarget和target的区别事件传递参数touches和changedTouches的区别事件的绑定两种方法事件传参事件的冒泡与事件的捕获小结常见的事件有:类型触发条件最低版本touchstart手指触摸动作开始touchmove手指触摸后移动touchcancel手指触摸动作被打断
这篇文章给大家分享的是用JS怎样实现简易的搜索筛选功能。小编觉得挺实用的,能应用的场景很多,因此分享给大家做个参考,文中示例代码介绍的非常详细,感兴趣的朋友接下来一起跟随小编看看吧。
这篇文章主要介绍了vue如何实现简易的双向数据绑定,帮助大家更好的理解和使用vue框架,感兴趣的朋友可以了解下
线程和进程是计算机操作系统的基础概念,在程序员中属于高频词汇,那如何理解呢?Node.js 中的进程和线程又是怎样的呢?下面本篇文章就来一起了解一下,希望对大家有所帮助!
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008