本教程操作环境:windows7系统、css3版,DELL G3电脑。
jq设置css的方法:
如果要设置单个样式属性可以这样
复制代码1
$('#test').css('background-color','red');
登录后复制
如果你要同时设置多个属性你,可以传入一个对象
复制代码1
$('#test').css({'background-color':'red','font-size':'20px'});
登录后复制
即属性值例如background-color,你也可以用驼峰形式backgroundColor,这时你可以不用单引号
你可以亲自试一下
复制代码1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/<a href="http://www.jquerycn.cn/
" target="_blank" class="inner-link">jquery</a>/1.7.0/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$('#test').css('background-color','red');
});
});
</script>
</head>
<body>
<h1 id="test">jquery 设置css</h1>
<button type="button">设置h1的css</button>
</body>
</html>
登录后复制
以上就是jq如何设置css的详细内容,更多请关注靠谱客其它相关文章!
最后
以上就是欢喜向日葵最近收集整理的关于jq如何设置css的全部内容,更多相关jq如何设置css内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复