jQuery使用addClass()方法给元素添加多个class样式
作者:bea
本文实例讲述了jQuery使用addClass()方法给元素添加多个class样式的方法。分享给大家供大家参考。具体如下: jQuery通过addClass()方法给元素添加多个class,只需要在添加的class中用空格分开多个class既可 <!DOCTYPE html><html><head><script src="js/jquery.min.js"></script><script>$(do
本文实例讲述了jQuery使用addClass()方法给元素添加多个class样式的方法。分享给大家供大家参考。具体如下:
jQuery通过addClass()方法给元素添加多个class,只需要在添加的class中用空格分开多个class既可
<!DOCTYPE html>
<html>
<head>
<script src="js/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").addClass("important blue");
});
});
</script>
<style type="text/css">
.important
{
font-weight:bold;
font-size:xx-large;
}
.blue
{
color:blue;
}
</style>
</head>
<body>
<div id="div1">This is some text.</div>
<div id="div2">This is some text.</div>
<br>
<button>Add classes to first div element</button>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。
猜你喜欢
您可能感兴趣的文章:
- jQuery使用fadein方法实现渐出效果实例
- jQuery使用fadeout实现元素渐隐效果的方法
- javascript包装对象实例分析
- 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实现自定义右键行为