LLWiki正在建设中,欢迎加入我们

Widget:年表标签/筛选

来自LLWiki
Bhsd讨论 | 贡献2020年9月1日 (二) 02:35的版本
跳转到导航 跳转到搜索

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)');
                    if(child)
                        parent.style.display = '';
                    else
                        parent.style.display = 'none';
                });
            }, 50);
        });
    });
});
//