xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>高手教程(study.p2hp.com)</title>
<script src="https://cdn.staticfile.net/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$(".btn1").click(function(){
$("p").animate({borderLeftWidth:"10px"});
});
$(".btn2").click(function(){
$("p").animate({borderLeftWidth:"1px"});
});
});
</script>
</head>
<body>
<button class="btn1">动画</button>
<button class="btn2">重置</button>
<p style="border:1px solid black">这是一个段落。</p>
</body>
</html>