Widget:年表標籤/篩選

於 2020年9月12日 (六) 06:45 由 Bhsd留言 | 貢獻 所做的修訂 (// 使用Wikiplus小工具快速编辑)

JavaScript腳本:

window.addEventListener('load', function() {
    document.querySelectorAll('.filter').forEach(function(ele) {
        ele.addEventListener('click', function() {
            setTimeout(function() {
                document.querySelectorAll('#mw-content-text dl').forEach(function(parent) {
                    var child = parent.querySelector('dd > :not(.mw-collapsed)');
                    parent.style.display = child ? '' : 'none';
                });
            }, 50);
        });
    });
});
//