gpt4 book ai didi

jquery - Chrome 扩展 Ajax 请求

转载 作者:行者123 更新时间:2023-12-03 22:39:50 26 4
gpt4 key购买 nike

我是一个新手,正在开发一个 google-chrome 扩展,它需要向服务器发出 jquery ajax 请求,加载一些 html 文档。我的服务器是 Apache,使用 XAMPP 1.7.3 在本地主机上运行。 jquery 是 jquery-1.6.1.js

当我使用像 chrome 这样的标准浏览器加载它时 http://localhost/Chrome/popup.html ,jquery ajax 可以工作。它可以正常加载 html 文档。但是,问题是当我在 Google Chrome (Google Chrome 11) 扩展程序开发人员模式中通过“加载解压的扩展程序”打开我的扩展程序时。 html 文档无法加载

有人可以帮助解决我的问题吗?

这是我的代码:

list .json

        {
"name": "Nyu Extension",
"version": "1.0",
"description": "My First Extension",
"permissions" : ["http://localhost/", "http://*/*"],
"browser_action": {
"default_icon": "N.png",
"popup": "popup.html"
}
}

popup.html

        ...
function activeTab(tab)
{
document.getElementById("tab1").className = "";
document.getElementById("tab"+tab).className = "active";
if(tab == 1)
{
$.ajax({
url: "ssc/contentpage1.txt",
success: function(data) {
$('#content').html(data);
}
});
}
}
...

如果有什么问题请告诉我..

最佳答案

您应该在 $.ajax 调用中指定绝对(完整)URL(即 http://localhost/Chrome/ssc/contentpage1.txt )。

关于jquery - Chrome 扩展 Ajax 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6006825/

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