如何单击加载 html 页面的链接,然后使用 ajax(不单击任何内容)加载外部 html 页面?
html 带有指向 page2.html 的链接,当加载 page2.html 时,我想使用 AJAX 在其中加载 page3.html 的内容。有人可以为我提供解决方案吗?我已经尝试过这个,但它不起作用。
//link icon to correspoding link on what we do
$('#websites').click(function() {
$(this).attr('href', function() {
$('#loading_content').load('what-we-do.html/istoselides').fadeIn(1000);
})
});
非常感谢!
更新
<li id="adv"><a href="what_we_do.html?istoselides">adv</a></li>
<script type="text/javascript">
$(document).ready(function () {
if (window.location.search == "?istoselides") {
#('#loading_content').load('what-we-do.html/istoselides').fadeIn(1000);
}
});
html with a link to page2.html and when page2.html is loading i want to load inside it with AJAX the content of page3.html. Can someone provide me with a solution? i have tried this but it doesnt work.
//link icon to correspoding link on what we do
$('#websites').click(function() {
$(this).attr('href', function() {
$('#loading_content').load('what-we-do.html/istoselides').fadeIn(1000);
})
});
Thanks so much!
UPDATE
<li id="adv"><a href="what_we_do.html?istoselides">adv</a></li>
<script type="text/javascript">
$(document).ready(function () {
if (window.location.search == "?istoselides") {
#('#loading_content').load('what-we-do.html/istoselides').fadeIn(1000);
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过 href 将信息从 page1 传递到 page2,但不能通过代码,因此您必须设置某种关键字,例如在查询字符串中,并让 page2 提取此信息:
page1.html
page2.html
You can pass information from page1 to page2 through the href, but not code, so you'll have to set a keyword of some sort, for example in the query string, and let page2 extract this information:
page1.html
page2.html