处理

发布于 2024-12-01 09:13:41 字数 328 浏览 1 评论 0原文

在 JSP 中使用 动态加载下拉列表时,如何默认选择选项?

这是我的代码:

<html:select property="menu" >
    <html:option value="">–SELECT–</html:option>
    <html:options collection="menuList" property="value" labelProperty="label" />
</html:select>

When loading the dropdowns dynamically using <html:options> in JSP, how do I select an option by default?

Here is my code:

<html:select property="menu" >
    <html:option value="">–SELECT–</html:option>
    <html:options collection="menuList" property="value" labelProperty="label" />
</html:select>

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

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

发布评论

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

评论(1

╭ゆ眷念 2024-12-08 09:13:41

您可以像这样指定选定的项目:

<html:select property="selectedItem">

您在 Action 中所要做的就是从 Form 对象中调用 setSelectedItem("myselection") 。

我假设你在这里使用 Struts。

You can specify the selected item like this:

<html:select property="selectedItem">

All you have to do in your Action is to call the setSelectedItem("myselection") from your Form object.

I Assume you use Struts here.

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