根据下拉值自动填充文本字段
我想根据下拉值填充我的文本字段信息。
<cfselect name="Env" width="180" >
<cfoutput>
<option value="" >Select</option>
<option value="prod" >Production</option>
<option value="beta" >Beta</option>
</cfoutput>
</cfselect>
<cfinput
<cfinput name="ReqNumber" type="text" value="" width="90" >
请求编号文本字段应该像这样自动显示 Prod-110611(env 字段值 - 当前日月年)如果用户选择 prod 如果用户从下拉列表中选择 beta,则应显示以下值 beta-110611。
I wanted to populate my text field information based on dropdown value.
<cfselect name="Env" width="180" >
<cfoutput>
<option value="" >Select</option>
<option value="prod" >Production</option>
<option value="beta" >Beta</option>
</cfoutput>
</cfselect>
<cfinput
<cfinput name="ReqNumber" type="text" value="" width="90" >
Requestnumber textfield should be displayed automatically like this
Prod-110611 (env field value - currnet day month year) if user selects prod
and following value should be displayed beta-110611 if user selcts beta from dropdown.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是未经测试的,但我认为以下内容应该有效:
参考文献:
.val()
。.change()
。:text
。:first
。This is untested, but I think that the following should work:
References:
.val()
..change()
.:text
.:first
.