<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript">
$(this).animate({fontSize:"+=3px"});
$(this).animate({letterSpacing:"+=2px"});
$(document).ready(function(){
$("body").delegate("p","click",changeSize);
$("body").delegate("p","click",changeSpacing);
$("button").click(function(){
$("body").undelegate("p","click",changeSize);
<p>点击任何段落增加字体大小和字符间距。包括本段落。</p>
<button>从 p 元素删除由 delegate() 方法添加的事件处理器 changeSize()</button>