在 jquery load() 中使用变量不起作用
这最终令人沮丧,因为它在开发站点上运行,但在将其移动到实时站点后,它停止工作。 :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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
URL中的域与页面的域相同吗?如果没有,您遇到的问题是因为
通过 jQuery 文档
Is the domain in the URL the same as the domain of the page? If not, the problem you're having is because
via the jQuery docs