<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("h1,h2,p").addClass("blue");
$("div").addClass("important");
});
});
</script>
<style type="text/css">
.important
{
font-weight:bold;
font-size:xx-large;
}
.blue
{
color:blue;
}
</style>
</head>
<body>
<h1>社会主义核心价值观</h1>
<h2>中国梦</h2>
<p>富强民主文明和谐</p>
<p>爱国敬业诚信友善</p>
<div>自由平等公正法治</div>
<br>
<button>向元素添加类</button>
</body>
</html>