<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>jquery test</title>
<script src="jquery-1.11."></script>
<style type="text/css">
.red
{
color:red;
}
</style>
</head>
<body>
<p>Learning is like sailing against the current, if you don't advance, you will retreat</p>
<p>Learning is like sailing against the current, if you don't advance, you will retreat</p>
<p>Learning is like sailing against the current, if you don't advance, you will retreat</p>
<p>Learning is like sailing against the current, if you don't advance, you will retreat</p>
<script type="text/javascript">
$("p").click(function(){
if($(this).hasClass("red")){ //Judge whether it has this class
$(this).removeClass("red");
}else{
$(this).addClass("red");
}
})
</script>
</body>
</html>