我想出了折叠表格的脚本
<script type="text/javascript">
var rowVisible = true;
function toggleDisplay(tbl) {
var tblRows = tbl.rows;
for (i = 0; i < tblRows.length; i++) {
if (tblRows[i].className != "headerRow") {
tblRows[i].style.display = (rowVisible) ? "none" : "";
}
}
rowVisible = !rowVisible;
}
</script>
<div class="datagrid"><table id="thread_1">
<thead><tr class="headerRow">
<th WIDTH="100"><a href="#" onclick="toggleDisplay(document.getElementById('thread_1'))" STYLE="color: white">SLO</a></th>
它工作正常,但我的问题是我想在人们离开网站时保存状态。我想最简单的方法是使用 cookie。我只是以前没有做过这样的事情。我怎样才能做到这一点?