代码复制到本地无法运行怎么解决?
代码复制到本地无法运行怎么解决?怎样在本地使用load。
代码复制到本地无法运行怎么解决?怎样在本地使用load。
2019-07-01
<!DOCTYPE html >
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>使用load()方法异步请求数据</title>
<script src="https://www.imooc.com/static/lib/jquery/1.9.1/jquery.js" type="text/javascript"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="divtest">
<div class="title">
<span class="fl">我最爱吃的水果</span>
<span class="fr">
<input id="btnShow" type="button" value="加载" />
</span>
</div>
<ul><h3></h3></ul>
</div>
<script type="text/javascript">
$(function () {
$("#btnShow").bind("click", function () {
var $this = $(this);
$("ul")
.html("<img src='Images/Loading.gif' alt=''/>")
.load("https://www.imooc.com/data/fruit.html",function(){
$this.attr("disabled", "true");
});
})
});
</script>
</body>
</html>
举报