jQuery学习手册(15)
Posted designbyly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery学习手册(15)相关的知识,希望对你有一定的参考价值。
逐个设置
$('div').css('width', '100px')
$('div').css('height', '100px')
$('div').css('background', 'black')
链式设置
注意:如果大于3步,建议分开
$('div').css('width', '100px').css('height', '100px').css('background', 'black')
批量设置
$('div').css({
width: '100px',
height: '100px',
background: 'pink'
})
获取CSS样式值
console.log($('div').css('background'))
每日一句
没有等出来的辉煌;只有走出来的美丽。
以上是关于jQuery学习手册(15)的主要内容,如果未能解决你的问题,请参考以下文章