gpt4 book ai didi

javascript - 如何让 Firebug 告诉我 jquery 的 .load() 返回了什么错误?

转载 作者:行者123 更新时间:2023-11-30 08:16:40 24 4
gpt4 key购买 nike

我试图在以下代码中找出 jquery 的 .load() 方法返回的数据/错误(#content 元素为空,因此我假设存在某种错误)。

  1. 在 Firebug 中的什么位置可以找到 .load() 返回的内容或错误?
  2. 我如何使用 console.log 至少找出返回的内容?

alt text
(来源:deviantsart.com)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript"
src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.3.2");
google.setOnLoadCallback(function() {
$('#loadButton').click(loadDataFromExernalWebsite);
});
function loadDataFromExernalWebsite() {
console.log("test");
$('#content').load('http://www.tanguay.info/web/getdata/index.php?url=http://www.tanguay.info/knowsite/data.txt', function() {
alert('Load was performed.');
});
}
</script>
</head>
<body>
<p>Click the button to load content:</p>
<p id="content"></p>
<input id="loadButton" type="button" value="load content"/>
</body>
</html>

最佳答案

Firebug 的 'Net' 选项卡应该会显示所有 HTTP 请求(包括来自其他域的任何请求)

关于javascript - 如何让 Firebug 告诉我 jquery 的 .load() 返回了什么错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2734887/

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