jQuery学习之------属性与样式
一、标签的属性:
<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>
时间: 2024-10-20 04:35:41