jQuery分组选择器简单用法示例
编程学习 2021-07-04 15:50www.dzhlxh.cn编程入门
这篇文章主要介绍了jQuery分组选择器简单用法,结合实例形式分析了使用jQuery分组选择器动态设置页面元素属性相关操作技巧,需要的朋友可以参考下
本文实例讲述了jQuery分组选择器简单用法。分享给大家供大家参考,具体如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>jQuery分组选择器</title> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script type="text/javascript"> $(function(){ // 注意:#content.title,.header.title无效 $('.header, div.title, [title="foot"]').css('backgroundColor','red'); }); </script> </head> <body> <div class="header">header <div class="title">title</div> </div> <hr> <div id="content"> content <div class="title">title</div> <div class="context">context</div> <div class="other">other</div> </div> <hr> <footer title='foot'>footer</footer> </body> </html>
这里使用在线HTML/CSS/JavaScript代码运行工具:测试上述代码,可得如下运行效果:
更多关于jQuery相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》及《》
希望本文所述对大家jQuery程序设计有所帮助。