我有隐藏和显示 div 的功能
function showDiv(popupName) {
if (popupName.is(':hidden')) {
var hid = document.getElementById("filter");
hid.style.display = 'block';
} else {
var hid = document.getElementById("filter");
hid.style.display = 'none';
}
}
当我们移动其他页面并返回隐藏 div 页面时,有什么方法可以重新加载隐藏 div?