在下面的脚本中,我想保持 htmlStrTOCpre 的初始值是静态的,这样它就不会改变。但是,一旦我编辑了文本区域,撤消将不再将原始文本粘贴回文本区域。我相信这是因为 htmlStrTOCpre 是基于调用 undoTOC 函数时 textarea 的 html() ,而不是页面加载时的初始值。
如何存储该初始值,以便始终将其粘贴回文本区域(通过 undoTOC 函数)?
<script>
jQuery(document).ready(function()
{
var pageurl = jQuery("#sample-permalink").text();
var htmlStrTOCpre = jQuery("#cb2_customTOC").html();
var htmlStrTOC = '<h3>Table of Contents</h3>\n';
htmlStrTOC += '<ul>\n';
htmlStrTOC += ' <li><a href="'+pageurl+'">Introduction </a></li>\n';
htmlStrTOC += ' <li><a href="'+pageurl+'2/">Introduction </a></li>\n';
htmlStrTOC += ' <li><a href="'+pageurl+'3/">Conclusion </a></li>\n';
htmlStrTOC += '</ul>';
var checkTOC = function()
{
jQuery("#cb2_customTOC").html(htmlStrTOC);
}
jQuery("#cb-toc-click").bind("click", checkTOC);
var undoTOC = function()
{
jQuery("#cb2_customTOC").html(htmlStrTOCpre);
}
jQuery("#cb-toc-undo").bind("click", undoTOC);
</script>
<div id="post_TOC" class="postbox ">
<h3 class="hndle"><span>Table of Contents</span></h3>
<div class="inside">
<style>
.cb-toc{color:blue;text-decoration:underline;cursor:pointer;}
</style>
<div class="inside">
<textarea name="cb2_customTOC" id="cb2_customTOC">Some initial value</textarea>
<span class="cb-toc" id="cb-toc-click">Paste TOC</span> | <span class="cb-toc" id="cb-toc-undo">Undo</span></p>
</div>
</div>
</div>
<span id="sample-permalink">http://localhost:8888/test/</span>