如何单击加载 html 页面的链接,然后使用 ajax(不单击任何内容)加载外部 html 页面?
您好,我想单击一个加载不同 html 页面的按钮,然后我想通过 ajax 自动加载外部 html 页面。我该怎么做?谢谢
更新
{ //链接图标到我们所做的相应链接 $('#websites').click(function() { $('#loading_content').hide().load('what-we-do/istoselides.html').fadeIn(1000) 返回假; }); 这不起作用,
因为返回 false。但当我把它拿走时它也不起作用!有什么想法吗?非常感谢!
Hi i want to click on a button that loads a different html page and then i want to automatically load via ajax an external html page. How do i do that? Thanks
UPDATE
{
//link icon to correspoding link on what we do
$('#websites').click(function() {
$('#loading_content').hide().load('what-we-do/istoselides.html').fadeIn(1000)
return false;
});
}
That doesnt work cause of the return false. But it doesnt work neither when i take it away! Any ideas?? Thanks a bunch!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
.load()
这。You can use
.load()
for this.