本文介绍了我有一个输入框和隐藏字段。我想将文本框的值传递给隐藏字段。如何实现这一目标。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 < asp:TextBox ID =txtHoursorAmountrunat =serverstyle =width:80px;/> < input type =hiddenname =hdnAmountorHours id =hdnAmountorHoursrunat =server/> <asp:TextBox ID="txtHoursorAmount" runat="server" style="width: 80px;"/> <input type="hidden" name="hdnAmountorHours" id="hdnAmountorHours" runat="server" />推荐答案 <asp:TextBox ID="txtHoursorAmount" runat="server" onblur="transferValue()"/> <input type="hidden" name="hdnAmountorHours" id="hdnAmountorHours" runat="server" /> 脚本是 script is<script type="text/javascript"> function transferValue() { var inputVal = document.getElementById("txtHoursorAmount").value; document.getElementById("hdnAmountorHours").value=inputVal; alert(inputVal); } </script> 好​​运Good Luck var inputVal = document.getElementById('<%=txtHoursorAmount.ClientID %>').value ; ,设定值与上述相同....... and set value as same as above....... 这篇关于我有一个输入框和隐藏字段。我想将文本框的值传递给隐藏字段。如何实现这一目标。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-24 20:54