jQuery使用CSS()方法给指定元素同时设置多个样式
作者:bea
本文实例讲述了jQuery使用CSS()方法给指定元素同时设置多个样式的方法。分享给大家供大家参考。具体如下: <!DOCTYPE html><html><head><script src="js/jquery.min.js"></script><script>$(document).ready(function(){ $("button").click(function(){ $("p").css
本文实例讲述了jQuery使用CSS()方法给指定元素同时设置多个样式的方法。分享给大家供大家参考。具体如下:
<!DOCTYPE html>
<html>
<head>
<script src="js/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").css({"background-color":"blue","font-size":"14px"});
});
});
</script>
</head>
<body>
<h2>This is a heading</h2>
<p style="background-color:#ff0000">This is a paragraph.</p>
<p style="background-color:#00ff00">This is a paragraph.</p>
<p style="background-color:#0000ff">This is a paragraph.</p>
<p>This is a paragraph.</p>
<button>Set multiple styles for p</button>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。
猜你喜欢
您可能感兴趣的文章:
- javascript操作select元素实例分析
- jquery使用slideDown实现模块缓慢拉出效果的方法
- jQuery使用slideUp方法实现控制元素缓慢收起
- jquery使用animate方法实现控制元素移动
- jQuery获取标签文本内容和html内容的方法
- Node.js 去掉种子(torrent)文件里的邪恶信息
- jQuery使用attr()方法同时设置多个属性值用法实例
- jQuery使用prepend()方法在元素前添加内容用法实例
- jQuery使用append在html元素后同时添加多项内容的方法
- jQuery使用before()和after()在元素前后添加内容的方法
- jQuery使用after()方法在元素后面添加多项内容的方法
- jQuery使用empty()方法删除元素及其所有子元素的方法
- jquery使用remove()方法删除指定class子元素
- jQuery使用removeClass方法删除元素指定Class的方法
- jQuery给多个不同元素添加class样式的方法
- Js实现自定义右键行为
- jQuery使用addClass()方法给元素添加多个class样式
- Jquery异步提交表单代码分享
- jQuery使用toggleClass方法动态添加删除Class样式的方法