当前位置:Gxlcms > html代码 > JQ系列:css操作_html/css_WEB-ITnose

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

时间:2021-07-01 10:21:17 帮助过:4人阅读

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;(多个设置)

人气教程排行