<html>
<head>
<script type="text/javascript" src="../jquery.js"></script>
<script type="text/javascript">
$(function(){
//将隐藏的段落用将近4秒的时间显示出来。。。并在之后执行一个反馈。。。
// $("p").show(4000,function(){
// $(this).text("Animation Done...");
//});
//用200毫秒将段落迅速隐藏,之后弹出一个对话框。
//$("p").hide("fast",function(){
// alert("Animation Done.");
//});
$("#a").load("file:///F:/study/jquery/09%202013-8-7%20%E5%8A%A8%E7%94%BB/02%20jquery.html");
});
</script>
</head>
<body>
<div id="a">
<p style="display: block">Hello</p>
</div>
</body>
</html>