📅  最后修改于: 2023-12-03 15:23:34.592000             🧑  作者: Mango
在本机反应开发中,经常需要隐藏一些界面元素或链接,使得界面更加简洁和易用。在抽屉导航中,有时需要隐藏一些屏幕链接,本文介绍如何使用Javascript实现此功能。
const hiddenLinks = document.querySelectorAll('.drawer-nav .hidden-link');
hiddenLinks.forEach(link => {
link.style.display = 'none';
});
const hiddenLinks = document.querySelectorAll('.drawer-nav .hidden-link');
hiddenLinks.forEach(link => {
link.style.display = 'none';
});
document.querySelectorAll
方法接收一个CSS选择器作为参数,返回所有匹配该选择器的元素的NodeList对象。hiddenLinks.forEach
方法用于遍历NodeList对象中的每一个元素,并执行指定的函数。link.style.display = 'none'
语句用于将该元素的display属性设置为'none',从而隐藏该元素。