gpt4 book ai didi

jquery - 将外部 div 内容加载到我的页面 div

转载 作者:行者123 更新时间:2023-12-01 03:46:59 27 4
gpt4 key购买 nike

我正在尝试将外部网站 #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

但它没有加载任何东西。

最佳答案

尝试下面的代码来获取回调响应:

$('#mydiv').load('http://localhost/qa/ask #external-div', function(response, status, xhr) {
if (status == "error") {
var msg = "Sorry but there was an error: ";
alert(msg + xhr.status + " " + xhr.statusText);
}
});

关于jquery - 将外部 div 内容加载到我的页面 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12938386/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com