1 Star 0 Fork 0

癫疯丶歌谣/前端牛客网面试题刷题

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
第八十五题列表动态渲染.html 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
癫疯丶歌谣 提交于 2022-06-29 09:14 . 修改
<!--
* @Author: yaojian66 1327629137@qq.com
* @Date: 2022-06-28 17:44:43
* @LastEditors: yaojian66 1327629137@qq.com
* @LastEditTime: 2022-06-28 17:58:30
* @FilePath: \geyao\第八十五题列表动态渲染.html
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>列表动态渲染</title>
</head>
<body>
<!-- 请补全JavaScript代码,将预设代码中的"people"数组渲染在页面中。实现下面的列表:
牛油1号 20岁
牛油2号 21岁
牛油3号 19岁 -->
<ul></ul>
<script>
var people = [{
name: '牛油1号',
id: 1,
age: 20
},
{
name: '牛油2号',
id: 2,
age: 21
},
{
name: '牛油3号',
id: 3,
age: 19
},
]
var ul = document.querySelector('ul');
let dom = '';
for(let i=0; i<people.length; i++){
dom += '<li>'+people[i].name+people[i].age+'岁</li>'
}
ul.innerHTML = dom
// 补全代码
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/geyaoisgeyao/geyao.git
git@gitee.com:geyaoisgeyao/geyao.git
geyaoisgeyao
geyao
前端牛客网面试题刷题
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385