码迷,mamicode.com
首页 > Web开发 > 详细

js遍历元素并添加属性

时间:2019-10-29 17:07:53      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:text   indexof   asc   type   red   天天向上   bsp   javascrip   item   

 

<body>
  <
div id="content">    <span>好好学习</span>   <span>天天向上</span>   </div>
</body>
<script type="text/javascript">
$(document).ready(function(){
    $("#content>span").each(function(index,item){
        var str = $(item).text();
        if(str.indexOf("好好学习")!=-1){
            $(item).css("color","red");
        }
    });
})
</script>

 

js遍历元素并添加属性

标签:text   indexof   asc   type   red   天天向上   bsp   javascrip   item   

原文地址:https://www.cnblogs.com/mjtabu/p/11759785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!