<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function(){// 开始动画
$("#go").click(function(){
  $(".block").animate({left: '+200px'}, 2000);
});// 当点击按钮后停止动画
$("#stop").click(function(){
  $(".block").stop();
});

})</script></head>
<body><button id="go">Go</button> <button id="stop">STOP!</button>
<div class="block" style="border:1px solid red; width:10px;height:10px;"></div></body>
</html>