|
@@ -22,13 +22,14 @@ $(function() {
|
|
|
function refreshColumn(columnLength){
|
|
|
for(var i=1;i<=columnLength;i++){
|
|
|
var isAccept=localStorage.getItem("curingColumn_"+i);
|
|
|
- console.log(isAccept);
|
|
|
+ console.log(typeof(isAccept));
|
|
|
isColumnShow(isAccept,i);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
function isColumnShow(isAccept,column){
|
|
|
if (typeof(isAccept)==null||isAccept) {
|
|
|
+
|
|
|
$('table[columnShow] tr').find('th:eq('+column+')').show();
|
|
|
$('table[columnShow] tr').find('td:eq('+column+')').show();
|
|
|
} else {
|