我有个DIV里面有一张表格当用户提交表单并成功提交时,我将表单替换为一条简单的“一切正常”消息:
代码语言:javascript复制$("#some_div").html("Yeah all good mate!");有没有一个好方法可以将div“重置”到它所带的HTML的“原始状态”?我只能想到做这样的事情:
代码语言:javascript复制//before I change the DIV
var originalState = $("#some_div").html();
//manipulate the DIV
//...
//push the state back
$("#some_div").html(originalState);它看起来不是很优雅--我想有一个更好的解决方案,不是吗?