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

jQuery 选择器

时间:2018-05-16 18:44:01      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:inter   rip   intro   als   AC   this   www.   asc   href   

选择器: ref: http://www.w3school.com.cn/jquery/jquery_selectors.asp

$(this) 当前 HTML 元素
$("p") 所有 <p> 元素
$("p.intro") 所有 class="intro" 的 <p> 元素
$(".intro") 所有 class="intro" 的元素
$("#intro") id="intro" 的元素
$("ul li:first") 每个 <ul> 的第一个 <li> 元素
$("[href$=‘.jpg‘]") 所有带有以 ".jpg" 结尾的属性值的 href 属性
$("div#intro .head") id="intro" 的 <div> 元素中的所有 class="head" 的元素

 

 

 

$("#interface_list li").each(function () {
                        if ($(this).find("span").text() == ifclick) {
                            $(this).click();
                            return false;
                        }
                    });

  #interface_list  id 为interface_list

  li        interface_list的子元素li

 

$("#interface_list li").each();
遍历id为 interface_list 的所有子元素<li/>

if ($(this).find("span").text() == ifclick) {
                            $(this).click();
                            return false;
                        }
从遍历结果 this 中, 查找子元素 <span/> 并获取 text内容, 比较跟ifclick相等, 触发<li>的click单击事件, 并跳出这次遍历

jQuery 选择器

标签:inter   rip   intro   als   AC   this   www.   asc   href   

原文地址:https://www.cnblogs.com/listenerln/p/9047206.html

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