如何根据表单中提交的信息在 div 中创建表格?
我正在寻找一种根据用户在表单中提交的信息在 div 中创建表格的方法。该表的列数是固定的,但行数是可变的。
我是否能够直接执行此操作,或者是否需要将信息添加到 mySQL 数据库,然后在页面重新加载时从数据库填充该表?
有关我的选择的任何信息都会有所帮助。
I am looking to find a way of creating a table in a div from the information submitted by the user in a form. The table would have a fixed number of columns, but a variable number of rows.
Would I be able to do this directly, or would the information need to be added to a mySQL database and then the table would be filled from the database on page reload?
Any information as to my options here would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,JavaScript 是客户端的,因此无法直接帮助您完成您想要在服务器上执行的操作!我不知道您正在使用什么平台,但无论如何,您需要有一个服务器端代码(例如 PHP、ASP、JSP ...)来建立数据库连接并为您创建表,并可以选择重定向到同一页面或另一个。基本上它不需要使用任何 javascript 代码,除非您想在不重新加载页面的情况下执行操作,在这种情况下您需要使用 AJAX,我建议您使用 jQuery AJAX 函数。
As far as I know JavaScript is meant to be client side therefore cannot directly help you with things you want to do on your server ! I dont know what platform you are using , but regardless, you need to have a serve-side code(e.g PHP, ASP, JSP ...) to make a db connection and create the table for you and optionally redirect to the same page or another. Basically it does not require any use of javascript code, except if you want to perform the action without reloading the page, In that case you need to use AJAX an I would suggest you to use jQuery AJAX functions.