0

我有隐藏和显示 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?

4

1 回答 1

1

你应该$(selector).toggle()改用。

文档

显示或隐藏匹配的元素。

添加的版本:1.0

因此,如果您的 div id 是filter您的函数,则变为:

function showDiv(popupName) { 
    $("#filter").toggle();
}
于 2013-09-24T05:08:36.940 回答