使用load()方法异步请求数据, 我自己设立一个HTML文件,之后用load()方法加载它,为什么不好用呢?
必须提前建立相同域名环境吗?以下是我的代码:
<body>
<h3>My favourite things</h3>
<button>button</button>
<div></div>
<script type="text/javascript">
$(function(){
$("button").click(function(){
$("div").html("<img src='../img/gif.jpg'>").load("text.html",function(){
$(this).attr("disabled","true");
})
})
})
</script>
</body>