“其他”下拉菜单中的选项和设置值

发布于 2024-10-17 17:31:51 字数 842 浏览 1 评论 0原文

我有一个带有“其他”选项的组合框。用户可以从列表中选择一个条目或选择选项“其他”。如果他们选择“其他”,下面将显示一个文本框以输入新帐号。请参阅下面的代码:

              <td>1. Account Number<span class="bodyCopy"><font color="#ff0000"> * </font></span>: 
        <html:select name="reDataForm" property="Member.accountNumber"  styleClass="formContent" 
          style="width:80px" onchange="showfield(this.options[this.selectedIndex].value)">
         <html:options collection="<%= WorkConstants.NewDropdowns.PACCT %>" property="value" labelProperty="label" styleClass="formContent"/>
        
         </html:select>

    
         <div id="div1"></div>

它工作正常。但是当页面刷新时,文本框就会消失,因为没有代码将其保留在那里。 1)如果使用选择“其他”并在文本框中输入新帐号,如何保留文本框?或者,如果我们可以将文本框值添加到下拉列表中,那也可以。 2)另外如何将文本框值设置到同一变量 Member.accountNumber 中?

请帮我 !!!!

I have a combobox with an option "other". user can select an entry from the list or select option "other". if they select "other" a text box will disply below to enter a new account number. see the code below:

              <td>1. Account Number<span class="bodyCopy"><font color="#ff0000"> * </font></span>: 
        <html:select name="reDataForm" property="Member.accountNumber"  styleClass="formContent" 
          style="width:80px" onchange="showfield(this.options[this.selectedIndex].value)">
         <html:options collection="<%= WorkConstants.NewDropdowns.PACCT %>" property="value" labelProperty="label" styleClass="formContent"/>
        
         </html:select>

    
         <div id="div1"></div>

It works fine. But when the page refreshes, the text box disappears as no code to keep it there.
1)how do I keep the text box if the use was selected "Other" and entered a new account number in the text box ? OR if we can add the text box value into the dropdown list, that will also work.
2) Also how to set the text box value into the same variable Member.accountNumber ?

please help me !!!!

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

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

发布评论

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

评论(1

于我来说 2024-10-24 17:31:51
  1. 在 onLoad 事件上使用一点 JavaScript 来检查是否选择了其他,并显示文本框
  2. 您无法提交与选择框同名的值。相反,作为第二个名称提交并在服务器端的 ActionForm 中进行相应处理。
  1. Use a little bit of javascript on an onLoad event to check if other is selected, and display the text box
  2. You can't submit the value as the same name as the select box. instead, submit as a second name and process accordingly in your ActionForm on the serverside.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文