美文网首页
jquery 02 jq选择器

jquery 02 jq选择器

作者: 小小机器人 | 来源:发表于2016-11-12 23:24 被阅读10次

基本选择器

parent child

类似后代选择器,不分层次的选择满足条件的节点


parent > child
[[attribute]]

[[attribute=value]]
[[attribute!=value]]
[[attribute^=value]]
[[attribute$=value]]
[[attribute*=value]]

:has(selector)
prev + next
prev ~ siblings

位置选择器

:first
:first-child
:only-child
:nth-child
:even
:gr(index)/eq(index)
:contains('')
Paste_Image.png
其他
Paste_Image.png

相关文章

  • jQuery 选择器

    本节我们来学习 jQuery 中的选择器,选择器是 jQuery 库中最重要的部分之一。 jQuery选择器 jQ...

  • jQuery 选择器

    本节我们来学习 jQuery 中的选择器,选择器是 jQuery 库中最重要的部分之一。 jQuery选择器 jQ...

  • 05_jQuery(一)

    JQuery(一) JQuery文档非常完善 今日重点:JQ选择器的学习 概述jQuery是javascript的...

  • 政府项目IE8 常用插件

    http://www.jq22.com/jquery-info11955jquery树形选择器 兼容IE8

  • jQuery学习指南01

    jQuery的优点 轻,jq一共30kb左右。 选择器强大,jq支持从css1到css3几乎所有的选择器。而jq自...

  • jquery 02 jq选择器

    基本选择器 parent child 类似后代选择器,不分层次的选择满足条件的节点 parent > child ...

  • jQuery之选择器归纳

    选择器是jQuery的根基,在jQuery中,对事件处理,遍历DOM和Ajax操作都依赖于选择器。--<锋利的jq...

  • jQuery使用及使用封装好的Ajax

    jQuery的使用及转化 //1.jq如何使用 //$("选择器").动作() //console.log($("...

  • 【jQuery】jQuery基础

    jQuery介绍 jQuery是一个轻量级JS库,使用十分简单;jQuery的核心是选择器,用于获取页面元素;jQ...

  • jQuery原型上的属性和方法

    jQ原型上的核心方法和属性:1、jquery 获取jQ版本号2、selector 实例默认的选择器取值3、leng...

网友评论

      本文标题:jquery 02 jq选择器

      本文链接:https://www.haomeiwen.com/subject/pkgqpttx.html