jQuery学习之------属性与样式

Posted NotFoundObject

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery学习之------属性与样式相关的知识,希望对你有一定的参考价值。

 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>

以上是关于jQuery学习之------属性与样式的主要内容,如果未能解决你的问题,请参考以下文章

jQuery学习之------元素样式的操作

jQuery学习之属性

python基础下的web前端学习之HTML

jQuery_DOM学习之------创建节点及节点属性

python学习之web中css

jQuery学习之prop和attr的区别