<script type="text/javascript" src="/js/jquery.js"></script>
<script type="text/javascript">
$(this).animate({fontSize:"+=3px"});
$(this).animate({letterSpacing:"+=2px"});
$(document).ready(function(){
$("p").live("click",changeSize);
$("p").live("click",changeColor);
$("button").click(function(){
$("p").die("click",changeSize);
<p>点击任意 p 元素可以增加尺寸和字间距。包括该段落。</p>
<button>移除通过 live() 方法为 p 元素添加的 changeSize() 事件处理器</button>