博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(3)选择元素——(6)属性选择器(Attribute selectors)
阅读量:6095 次
发布时间:2019-06-20

本文共 816 字,大约阅读时间需要 2 分钟。

Attribute selectors are a particularly helpful subset of CSS selectors. They allow us to specify an element by one of its HTML attributes, such as a link's title attribute or an image's alt attribute. 

属性选择器是一个相当有用css选择器的子集。 它允许我们通过一个元素的html属性去明确一个元素,比如一个链接的title属性或者一个图片的alt属性。
For example, to select all images that have an alt attribute, we write the following:$('img[alt]')Attribute selectors accept a wildcard syntax inspired by regular expressions for identifying the value at the beginning (^) or ending ($) of a string. 
They can also take an asterisk (*) to indicate the value at an arbitrary position within a string or an exclamation mark (!) to indicate a negated value.
比如,为了选择所有有着alt属性的的图片,我们写下下面的$("img[alt]")属性选择器,接受一个使用有规则的表达式的通配符语法用来明确一个字符串开始(^)和结束($)的值。 他们也可以使用星号(*)去表明在某一个位置有某个值,或者使用叹号(!)去表明一个相反的值。

转载地址:http://fggwa.baihongyu.com/

你可能感兴趣的文章
Java:正则表达式的详解
查看>>
i2c 协议解析【转】
查看>>
Kali信息收集系列:(都是我以前的笔记整理了一下,就没加水印,习惯就好)...
查看>>
Linux内核跟踪之syscall tracer 【转】
查看>>
走进AngularJs(五)自定义指令----(下)
查看>>
MSYS的安装和使用
查看>>
servlet 3.0特性说明
查看>>
《系统分析与设计方法》 第9章 过程建模
查看>>
android实现通过浏览器点击链接打开本地应用(APP)并拿到浏览器传递的数据
查看>>
爱上MVC3系列~Html.BeginForm与Ajax.BeginForm
查看>>
Xml序列化和反序列化
查看>>
Python中的字符串
查看>>
SQL 存储过程入门(事务)
查看>>
SqlMembershipProvider.ChangePassword 方法(已测试)
查看>>
基于标准C语言的数字图像处理基本框架
查看>>
jQuery name属性与checked属性结合获取表单元素值
查看>>
(翻译)Angular.js为什么如此火呢?
查看>>
[计算机图形学] 基于C#窗口的Bresenham直线扫描算法、种子填充法、扫描线填充法模拟软件设计(一)...
查看>>
品味FastDFS~第三回 项目中的FastDFS
查看>>
完美解决T4X风扇噪音问题 (热点问题) 最新版本v018中文版更新!!!
查看>>