选项卡案例模仿

选项卡案例模仿

1.输出结果

2.代码部分

<!DOCTYPE html><htmllang=“zh-CN”><head><metacharset=“UTF-8”><metahttp-equiv=“X-UA-Compatible”content=“IE=edge”><metaname=“viewport”content=“width=device-width, initial-scale=1.0”><title>选项卡案例</title><style>/* 隐藏 */.hidden { display: none;}/* 显示 */.active { display: block;}.type >*.active专业系统搭建点我wcqh.cn,.content >*.active { backgroundcolor: lightcoral;}</style></head><body><divclass=“box”><!– 1.栏目组 –><divclass=“type”style=display: flex></div><!– 2.内容组 –><divclass=“content”></div></div><scripttype=“module”>// 导入模块import{ createTab, setBtnStatus, setContentStatus } from ./modules/tabs.js;// 1. 获取栏目,内容容器专业系统搭建点我wcqh.cn元素const type = document.querySelector(.type);const content = document.querySelector(.content);// 2.页面加载完成,创建栏目和对应的内容 window.onload =()=> createTab(type, content);// 3. 点击栏目时,设置按钮的状态,与按钮对应的内容状态 type.onclick = ev =>{// ev.currentTarget// 触发主体// ev.target// 绑定主体, 是触发主体父级元素// 1.1 当前按钮高亮 setBtnStatus(ev);// 1.2 与按钮对应的内专业系统搭建点我wcqh.cn容显示出来 setContentStatus(ev, ev.target);};</script></body></html> // ! 栏目数据const cates =[{ cid:1, cname:国际新闻},{ cid:2, cname:中国新闻},{ cid:3, cname:北京新闻},];// ! 列表数据// 列表数据,必须与指定的栏目,一一对应const details =[{ key:1,// 查询匹配 cid:1, content:[{ title:俄罗斯宣布从赫尔松部分地区撤军, url:https://news.ifeng.com/c/8KoK54urn1k,},{ title:俄罗斯宣布从赫尔松部分地区专业系统搭建点我wcqh.cn撤军, url:https://news.ifeng.com/c/8KoK54urn1k,},{ title:俄罗斯宣布从赫尔松部分地区撤军, url:https://news.ifeng.com/c/8KoK54urn1k,},],},{ key:2, cid:2, content:[{ title:空战隐身无人僚机亮相!, url:https://news.ifeng.com/c/8KoeDFJXF1b,},{ title:空战隐身无人僚机亮相!, url:https://news.ifeng.com/c/8KoeDFJXF1b,},{ title:空战隐身无人僚机亮相!, url:https://news.if专业系统搭建点我wcqh.cneng.com/c/8KoeDFJXF1b,},],},{ key:3, cid:3, content:[{ title:安康码”上新!家庭成员核酸情况查询更便捷, url:https://ah.ifeng.com/c/8KkGUDhAZNZ,},{ title:安康码”上新!家庭成员核酸情况查询更便捷, url:https://ah.ifeng.com/c/8KkGUDhAZNZ,},{ title:安康码”上新!家庭成员核酸情况查询更便捷, url:https://ah.ifeng.com/c/8KkGUDhAZNZ,},],},];// 创建样目和对应的内容区function createTab(type,专业系统搭建点我wcqh.cn content){// 1. 生成样目for(let i =0; i < cates.length; i++){// (1) 创建一个按钮const btn =document.createElement(button);// (2) 设置按钮的文本 btn.textContent = cates[i].cname;// (3) 给按钮添加一个自定义的 date-key, 主要是为了一个内容id的绑定 btn.dataset.key = cates[i].cid;// (4) 默认高亮第一个,所以第一个加上class=”active”if(i ===0) btn.classList.add(active);// (5) 将专业系统搭建点我wcqh.cn新按钮,添加到栏目容器元素中type type.append(btn);}// 2. 生成内容for(let i =0; i < details.length; i++){// (1) 创建列表const ul =document.createElement(ul)// (2) 添加列表索引 ul.dataset.key = details[i].cid;// (3) 默认显示第一个,其他的隐藏 ul.classList.add(i ===0?active:hidden);// (4) 生成子元素,用于显示第一条数据for(let k =0; k < details[i].content.length; k++){// 1. 生专业系统搭建点我wcqh.cn成 <li>const li = document.createElement(li);// 2. 生成 <a>const a = document.createElement(a);// 3. a.href a.href = details[i].content[k].url;// 4. a.textContent a.textContent = details[i].content[k].title;// 5. 将<a>添加到<li> li.append(a);// 6. <li>添加到<ul> ul.append(li);// 7. <ul>添加到内容容器中.content content.append(ul);}}专业系统搭建点我wcqh.cn}// 设置按钮高亮function setBtnStatus(ev){// 1. 当前按钮const currentBnt = ev.target;// 2. 去掉所有的按钮的active, 遍历// ev.currentTarget: 事件绑定主体 , 父元素// 转为真数组[…ev.currentTarget.children].forEach(btn => btn.classList.remove(active));// 3. 设置当前按钮高亮 currentBnt.classList.add(active);}// 设置内容状态: 与按钮对应的内容显示出来functionsetContentS专业系统搭建点我wcqh.cntatus(ev, currentBnt){// 1. 获取所有的列表const lists = document.querySelectorAll(.content > ul);// 2. 去掉所有列表的active,换成hidden lists.forEach(list => list.classList.replace(active,hidden));// 3. 找到与栏目key对应的列表// lists: NodeList对象, 不是数组const currentList =[…lists].find(list => list.dataset.key == currentBtn.dataset.key);/专业系统搭建点我wcqh.cn/ 返回当前应该高亮显示的列表// 4. 将要显示的列表,加上active,显示出来 currentList.classList.replace(hidden,active);}export{ createTab, setBtnStatus, setContentStatus };
批改老师:PHPz 批改状态:合格 老师批语:完成的很好, 继续加油
作者最新博文
2022-10-15 17:06:57

© 版权声明
THE END
喜欢就支持一下吧
点赞419 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容