jquery傻瓜教程三[css操作之增加
(addClass)和移除(removeClass)]
下面我们看看jquery对css的操作方法 addClass和
removeClass
addClass
为每个匹配的元素添加指定的类名。
removeClass
为每个匹配的元素移除指定的类名。
<SCRIPT
LANGUAGE=”JavaScript”>
<!–
$(document).ready(function() {
$(“div”).addClass(“redborder”);//当页面加载完成后给每个div标签 加上 redborder样式
$(“div”).click(function(){
$(this).removeClass(“redborder”);//当鼠标单击div标签的
时候 移除当前div标签的redborder样式
})
})
//–
>
</SCRIPT>
$(“div”).addClass(“redborder”);//当页面加载完成后给每个div标
签 加上 redborder样式
$(this).removeClass(“redborder”);//当鼠标单击div标签的时候 移
除当前div标签的redborder样式
这里我们注意$(this) 因为jquery 选择器 都是返回当前对象,
通过$(“div”) 我们是给页面所有的div标签都绑定了click事件 而$(this) 即使当前鼠标单击的标签对
象
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “
href="http://www.w3.org/TR/xhtml1/DTD/xhtml1- transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1- transitional.dtd href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml
<html xmlns=”
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″
/>
<title>jquery基础教程二(demo鼠标点击事件)</title>
<script
language=”javascript” src=”http://www.cnjquery.com/demo/jquery.js”></script>
<style>
r
.redborder{border:2px dashed #ff0000 }
</style>
<SCRIPT
LANGUAGE=”JavaScript”>
<!–
$(document).ready(function() {
$(“div”).addClass(“redborder”);
$(“div”).click(function(){
$(this).removeClass(“redborder”);
})
})
//–
>
</SCRIPT>
</head>
<body>
<div>jquery傻瓜基础教程三
(demo鼠标点击事件)1</div>
<div>jquery傻瓜基础教程三(demo鼠标点击事件)
2</div>
</body>
</html>