attr()函数是CSS中的内置函数, 它返回所选元素的属性值。
语法如下:
attr( attr_name )
参数:该函数接受单个参数attr_name用于保存HTML元素中属性的名称。它是必填参数。
返回值:该函数返回选定元素的属性值。
下面的示例说明了CSS中的attr()函数:
程序:
<
!DOCTYPE html>
<
html >
<
head >
<
title >
attr function<
/ title >
<
style >
a:before {
content: attr(href) " =>
";
}
a {
text-decoration:none;
}
.gfg {
font-size:40px;
color:green;
font-weight:bold;
}
body {
text-align:center;
}
<
/ style >
<
/ head >
<
body >
<
div class = "gfg" >
lsbin<
/ div >
<
h1 >
The attr() Function<
/ h1 >
<
a href = "https://www.lsbin.org" >
lsbin<
/ a >
<
/ body >
<
/ html >
【CSS attr()函数代码简单示例】输出如下:
文章图片
推荐阅读
- React Native AsyncStorage持久化 – React Native实战教程
- 从列表中移除满足Java中给定谓词的元素
- 算法题(100头牛和牛奶问题)
- AngularJS ng-bind指令用法详细指南
- Python(将字典作为参数传递给函数)
- Scala中的数据类型详细介绍和解释
- Golang中的嵌套结构代码示例解释
- 亚马逊面试体验(AmazonWow)
- PHP IntlChar::charDigitValue()函数用法指南