JQuery——添加CSS样式

原生的JavaScript中,可以用style属性为CSS添加样式

var className=document.getElementsByClassName("box");

className.style.backgroundColor="red";

jQuery中使用JQ提供的CSS()方法添加样式(添加的样式为行间样式)

  1. $(".box").css("backgroundColor","red");                         //这个方法只能添加一个属性
  2. $(".box").css({backgroundColor:"red",fontSize:"20px:});//这个方法可以添加多个CSS样式属性

本文链接:https://my.lmcjl.com/post/3218.html

展开阅读全文

4 评论

留下您的评论.