我想出了一個腳本,摺疊表JavaScript的崩潰表餅乾
<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。我以前沒有做過這樣的事情。我怎樣才能做到這一點?
谷歌HTML5本地存儲。 Cookies用於您在服務器上需要的信息。 –