gpt4 book ai didi

jquery - 加载外部 html 后返回

转载 作者:行者123 更新时间:2023-12-01 03:19:57 26 4
gpt4 key购买 nike

在这个问题上我绞尽脑汁(我是 jQuery 等新手)。

我已成功通过点击将外部 html 文件加载到我的页面中,但不知道如何返回到该 div 中之前的内容。

我的代码:

$(document).ready(function(){
$('.project').click(function(e){
var link = $(this).attr('rel');
event.preventDefault();
$('#main').empty();
$('#main').load(link);
});
});

任何帮助将不胜感激。

谢谢!

最佳答案

您可以克隆 div 并将其存储在变量中:

 var whatWas = $('#main').clone();

关于jquery - 加载外部 html 后返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11036584/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com