我有隐藏和显示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页面时,有没有办法重新加载hide div?
答案 0 :(得分:1)
您应该使用$(selector).toggle()
代替。
显示或隐藏匹配的元素。
版本添加:1.0
因此,如果您的div id为filter
,则您的功能将变为:
function showDiv(popupName) {
$("#filter").toggle();
}