JSP中的CRUD操作

发布于 2024-10-10 05:45:02 字数 108 浏览 0 评论 0原文

  1. 当数据存在时如何循环复选框 从数据库中的表中检索?

  2. 如何在以下情况下填充弹出窗口 在表中选中复选框以 更新表格?

  1. How to loop a checkbox when data is
    retrieved from table in a database?

  2. How to populate a pop-up window when
    checkboxes are checked in a table to
    update the table?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一杆小烟枪 2024-10-17 05:45:02

为复选框提供数据库 ID 值,然后单击编辑链接检查 ID 并从弹出窗口中的数据库获取该 ID 的数据。现在您已经有了 raw 的 id,您可以轻松更新数据。

<input type="checkbox" id="db_id" value="<%=db_id_value %>"/>

希望你理解。

Give checkboxes value of database id and on clicking on edit link check for the id and get the data for that id from database in popup. Now that you have id of raw you can easily update the data.

<input type="checkbox" id="db_id" value="<%=db_id_value %>"/>

Hope you understand.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文