无法加载以变量作为地址的 AJAX 查询

发布于 2024-09-25 18:55:20 字数 705 浏览 0 评论 0原文

简单的问题主要在标题中解释。我需要加载一个页面,但只是#container div。但我不能。

<div id="top"><a href="index.php">Home</a> | <a href="operators.php">Operators</a></div>
<script type="text/javascript">
$('#top a').click(function(){  
        var pageURL=$(this).attr('href');
 $('#container').fadeOut(100);
 $('#container').load(pageURL, '#container');
 $('#container').fadeIn(400);
 return false;
});
</script>
<div id="container">
////content...
</div>

这就是我正在使用的代码。我希望 jQuery 加载 pageURL 中的页面,它只获取链接的 href。那行得通。这是必须加载不起作用的变量的部分。

它可以自行加载变量,但是当我尝试让它仅加载#container时,它就会崩溃。没有错误。没有什么。

我怎样才能让它按预期工作?

谢谢:)

-Jaxo

simple question mostly explained in the title. I need to load up a page, but just it's #container div. I can't, though.

<div id="top"><a href="index.php">Home</a> | <a href="operators.php">Operators</a></div>
<script type="text/javascript">
$('#top a').click(function(){  
        var pageURL=$(this).attr('href');
 $('#container').fadeOut(100);
 $('#container').load(pageURL, '#container');
 $('#container').fadeIn(400);
 return false;
});
</script>
<div id="container">
////content...
</div>

That's the code I'm using. I want the jQuery to load up the page I have in pageURL, which just grabs the href of the link. That works. It's the part where it has to load the variable that doesn't work.

It can load the variable by itself, but as soon as I try to make it load just the #container, it crashes. No errors. Nothing.

How can I get it to work as desired?

Thanks :)

-Jaxo

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

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

发布评论

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

评论(1

眼中杀气 2024-10-02 18:55:20

$('#container').load(pageURL, '#container'); 应该是 $('#container').load(pageURL+' #container'); >

根据 .load() API,它是 $ ('item').load('url #container');

$('#container').load(pageURL, '#container'); should be $('#container').load(pageURL+' #container');

According to the .load() API, it's $('item').load('url #container');

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