标签:a标签 标签 ntb attr get script 获取 style 设置
一、标签的属性:
<a href=””>链接</a>此处的href就是该a标签带有的属性
在js中对标签的属性的操作方法有
1.1getAttribute()方法 ----获取元素的属性
例子:
<a href="www.soulsjie.com" id="jie">jie</a>
<script>
var aa=document.getElementById("jie").getAttribute("href");
//获取id为jie的元素的href属性的值赋值给变量aa,之后将aa打印
document.write(aa);
</script>
1.2setAttribute()方法----设置元素的属性
例子:
<a href="" id="jie">jie</a>
<script>
document.getElementById("jie").setAttribute("href","https://soulsjie.com");
//
</script>
标签:a标签 标签 ntb attr get script 获取 style 设置
原文地址:http://www.cnblogs.com/soulsjie/p/7782967.html