开启辅助访问
帐号登录 |立即注册

JS将数组用表格输出,for循环取索引与取值

 
<scr1pt>
let hd =
[
{ title: "第一章走进JAVASCRIPT黑洞", lesson:18 }
{ title: " ubuntu19.10配置好用的编程I作站", lesson:29 }
{ title: " 媒体查询响应式布局", lesson:20 }
];
//写入表头
document.write(
<table border="1" width=" 100%">
<thead><tr><th>标题</ th><th>课程数量</ th></ thead>
)
//用for  in循环遍历KEY索引,输出表格内容
for ( let i in hd ) {
document.write(
<tr><td>${hd. title}</ td><td>${hd[ i].lesson}<td></tr>;
}
document . write("</ table>");

直接取值比取索引更简单
//同样结果,用for  of循环遍历VALUE循环输出表格内容
for ( vadio of hd ) {
document.write(
<tr><td>${vadio. title}</ td><td>${vadio.lesson}<td></tr>;
}
document . write("</ table>");


回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

友情链接
  • 艾Q网

    提供设计文章,教程和分享聚合信息与导航工具,最新音乐,动漫,游戏资讯的网站。