慕粉3804975
2016-12-30 11:26
<script type="text/javascript">
$(function () {
$("#btnShow").bind("click", function () {
var $this = $(this);
$("ul")
.html("<img src='Images/Loading.gif' alt=''/>")
.load(" http://www.imooc.com/data/fruit_part.html",function (data) {
$this.attr("disabled", "true");
});
});
})
});
</script>
<script type="text/javascript">
$(function(){
$("#btnShow").click(function(){
var tis= $(this);
$("ul").html("<img src='Images/Loading.gif' alt=''/>").load("http://www.imooc.com/data/fruit_part.html",function(){
tis.attr("disabled","true");
});
});
});
</script>
已将你的代码复制测试,发现是因为你的代码中多写了一个 " }) ",删除其中一个即可.
jQuery基础(五)一Ajax应用与常用插件
69100 学习 · 400 问题
相似问题