欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

JQ系列:css操作_html/css_WEB-ITnose

程序员文章站 2022-05-11 20:11:12
...
JQ中的  .css()有三种使用方法:
  1. $('#p').css('width'); 取得ID为p的样式属性的width值;等同 return width
  2. $('#p').css('width','100px'); 设置ID为p的样式属性 width : 100px;(单个设置)
  3. $('#p').css({'width':'100px','height':'100px' }); 设置ID为p的样式属性 width : 100px;height: 100px;(多个设置)
相关标签: JQ系列:css操作