selection.attr()函数用于设置所选元素的属性。使用此函数可以设置属性名称和属性值。
用法:
selection.attr(name[, value]);
参数:该函数采用两个参数,如上所示和下面所述:
- name:它是属性的名称。
- value:它是属性的值。
返回值:此函数不返回任何值。
范例1:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" path1tent=
"width=device-width,initial-scale=1.0">
<title>D3.js selection.attr() Function</title>
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
<style>
p {
line-height:5px;
}
</style>
</head>
<body>
<div>
<p>GeeksforGeeks</p>
</div>
<script>
var div = d3.select("p")
.attr("name", "This is from name attribute");
var divselect = document.querySelector("p");
console.log(divselect.getAttribute("name"));
</script>
</body>
</html>
输出:
范例2:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" path1tent=
"width=device-width,initial-scale=1.0">
<title>D3.js selection.attr() Function</title>
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
<style>
p {
line-height:5px;
}
</style>
</head>
<body>
<div>
<a>GeeksforGeeks</a>
</div>
<script>
var a = d3.select("a").attr("href",
"https://www.geeksforgeeks.org");
var divselect = document.querySelector("a");
console.log("This is from a attr href:",
divselect.getAttribute("href"));
</script>
</body>
</html>
输出:
相关用法
- PHP Ds\Set xor()用法及代码示例
- PHP chr()用法及代码示例
- p5.js pan()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- d3.js zip()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js dsv()用法及代码示例
- d3.js tsv()用法及代码示例
- d3.js arc()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- d3.js d3.min()用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 D3.js selection.attr() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。