在 jquery load() 中使用变量不起作用

发布于 2024-10-11 04:40:10 字数 430 浏览 3 评论 0原文

这最终令人沮丧,因为它在开发站点上运行,但在将其移动到实时站点后,它停止工作。 :S

$('.menu_btn').click(function(e) {
//rel is used to tell me what html page to load
var url = $(this).attr('rel');
//load the new page into the div
$('#ajax_wrapper').load(url);
});

更令人沮丧的是,当我硬编码 url 的值时:

var url = 'http://www.example.com/pages/home.html'

它工作没有问题。

添加 alert(url) 为我提供了正确的相对地址。

this is ultimately frustrating, because it was working on the development site, but after moving it to the live site, it stopped working. :S

$('.menu_btn').click(function(e) {
//rel is used to tell me what html page to load
var url = $(this).attr('rel');
//load the new page into the div
$('#ajax_wrapper').load(url);
});

the even more frustrating thing is, when i hard code the value of url in:

var url = 'http://www.example.com/pages/home.html'

it works without problems.

adding an alert(url) gives me the correct rel address.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

四叶草在未来唯美盛开 2024-10-18 04:40:10

URL中的域与页面的域相同吗?如果没有,您遇到的问题是因为

由于浏览器安全限制,
大多数“Ajax”请求都受到
同源政策;请求
无法成功检索数据
来自不同的域、子域或
协议。

通过 jQuery 文档

Is the domain in the URL the same as the domain of the page? If not, the problem you're having is because

Due to browser security restrictions,
most "Ajax" requests are subject to
the same origin policy; the request
can not successfully retrieve data
from a different domain, subdomain, or
protocol.

via the jQuery docs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文