.load()只能请求一次吗?不能反复?执行一次后,第二次请求不出来
<script type="text/javascript">
$(function () {
$("#btnShow").bind("click", function () {
var $this=$(this);
if($this.val()=="加载"){
$("ul")
.html("<img src='Images/Loading.gif' alt=''/>")
.load("http://www.imooc.com/data/fruit_part.html",function(){
$this.val("收起");
})}else{
$("ul").hide(1000);
$this.val("加载");
}
})
});
</script>