我有一个带有表单的 DIV。当用户提交表单并成功提交时,我用一个简单的“现在一切都很好”消息替换表单:
$("#some_div").html("Yeah all good mate!");
有没有一种好方法可以根据它随附的 HTML“重置”div 到它的“原始状态”?我只能想到实际做这样的事情:
//before I change the DIV
var originalState = $("#some_div").html();
//manipulate the DIV
//...
//push the state back
$("#some_div").html(originalState);
它看起来不是很优雅 - 我想有一个更好的解决方案,不是吗?