load()事件都执行了,为什么加载不出来网页内容?

<body>
<div id="divtest">
    <div class="title">
        <span class="fl">我最爱吃的水果</span> 
        <span class="fr">
            <input id="btnShow" type="button" value="加载" />
        </span>
    </div>  
    <ul></ul>
</div>
<script type="text/javascript">
    $(function () {
        $("#btnShow").bind("click", function () {
            var $this = $(this);
            $("ul").load("http://www.imooc.com/data/fruit_part.html",function(){
                $this.attr("disabled","true");
            });
        })
    });
</script>
</body>
金州30勇士
浏览 1933回答 2
2回答

aparch

根据你的语句,你点的这个UL加载,disabled,true你把它禁用了,disabled是不能使用的意思,true改为false

一杯2块的奶茶

跨源请求被阻止了
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JQuery