在 HTML 中创建动态增长的表格
我对 HTML 非常陌生,所以我不确定是否需要使用 Javascript 函数来实现这一点,或者如何开始。我想创建一个根据收到的数据增长和缩小的表。我知道 HTML 有一个表格标签,并且我一直在使用它,但我不知道如何让它根据不同的数据创建单元格。
I am super new to HTML, so I am not sure if I need to use a Javascript function to implement this, or how to even begin. I would like to create a table that grows and shrinks based on the data received. I know that HTML has a table tag, and I have been playing around with it, but I don't know how to make it create cells based on varying data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用什么来填充数据?据我所知,HTML5 对于表格操作有相同的标签。因此,如果您使用 PHP 或 .NET,通常会使用类似于循环的东西,使用数据库或其他数据源中的数据创建所需数量的行。
它可能看起来像
声明变量来保存表数据
添加
标记
执行添加行的循环
添加
标记
将变量发布到某些放置在页面上以显示表格。
What are you using to populate your data? As far as I know HTML5 has the same tags for the table manipulation. So if you are using PHP or .NET, you usually have something like a loop that creates as many rows as you need with the data from the database or other data source.
It may look something like that
declare variable to hold table data
add
<table>
tagdo your loop that adds rows
add
</table>
tagpost the variable to some place on your page to display the table.