例 1.4(toggleClass.html)
<html>
<head>
<title>toggleClass()方法</title>
<style type="text/css">
<!--
.qieClass{undefined
background-color:#00FF00;
}
-->
</style>
<script language="javascript" src="jquery.js"></script>
<script language="javascript">
$(function(){undefined
//当点击<P>标签时触发事件
$("p").click(function(){undefined
//this表标jquery对象$("p")
//点击的时候不断切换,当有qieClass样式时就去掉样式,否则添加样式
。
/*通过下面的方法可以回到传统的模式*/
alert(this.firstChild.nodeValue);
$(this).toggleClass("qieClass");
});
});
</script>
</head>
<body>
<p>点击这里</p>
<p>点击这里2</p>
</body>
</html>
更多内容请见原文,文章转载自:https://blog.csdn.net/qq_44594371/article/details/103061992
相关文章
- 12-04MapReduce当中Combiner的用法
- 12-04jquery 的on事件用法
- 12-04jQuery的方法以及一些用法
- 12-04jquery中this与 this 的用法区别
- 12-04jquery中this与$(this)的用法区别
- 12-04MapReduce当中的reduce当中的cleanup的用法
- 12-04jQuery的一些基础用法
- 12-04window.onload和$函数的区别,document中getElementById()等函数的用法,DOM对象转换成jQuery对象
- 12-04jquery easyui datagrid的一些用法
- 12-04jquery当中toggleClass的用法