Widget:年表標籤/篩選

於 2020年10月6日 (二) 04:18 由 Bhsd留言 | 貢獻 所做的修訂
Template-info.png 小部件文檔
這個文檔是內聯文檔。

僅用於{{年表標籤/篩選}}。

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);
        });
    });
});
//