JSTL 中与数据库交互的选择框
我想在选择标签
ex 中以不同的方式设置值和不同的选项。
<select name="myselect">
<option value="1">one</option>
</select>
这意味着我有来自数据库的两个列表
1)一个是用户名的 ID,我想将其保留在 select
的值中 2)第二个是用户名,这是其他的。我想保留在选项标签之间
请帮助
谢谢 拉凯什
I want to set value differently and option differently in an Select tag
ex.
<select name="myselect">
<option value="1">one</option>
</select>
that mean i have two list from DB
1)one is Id of username to which i want to keep in value of select
2)second is username which is other. this i want to keep in between option tag
Please Help
thanks
Rakesh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确定两个列表都是同步的(就索引而言,即列表 a 中的用户 Abc 位于顶部,因此其他列表中的 Abc 的 id 位于顶部)
您可以按照以下方式执行此操作
If you are sure that both of the list are in sync (in terms of index , i.e. user Abc from list a is at the top so id of the Abc in other list is at the top)
You can do it following way