js遍历元素并添加属性
Posted mjtabu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js遍历元素并添加属性相关的知识,希望对你有一定的参考价值。
<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遍历元素并添加属性的主要内容,如果未能解决你的问题,请参考以下文章