我正在尝试将外部网站#external-div 内容加载到#mydiv div 上的页面。我试过附上这个jquery
<script src="js/jquery-1.8.2.min.js"></script>
和脚本是
<script>
$(document).ready(function(){
$('#mydiv').load('http://localhost/qa/ask #external-div');
});
</script>
我的 div
<div id="mydiv">loading...</div>
我从这里下载了 jquery http://jquery.com/download/?rdfrom=http%3A%2F%2Fdocs.jquery.com%2Fmw%2Findex.php%3Ftitle%3DDownloading_jQuery%26redirect%3Dno
但它没有加载任何东西。