如何将年龄值设置为Textbox id是txtage? 我想将年龄设置为文本框值而不是警告框
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:TextBox ID="txtDate" runat="server" />
<asp:TextBox ID="txtage" runat="server" />
<asp:ImageButton runat="server" ID="imgPopup" ImageUrl="~/Images/Calendar.png" />
<cc1:CalendarExtender ID="CalendarExtender1" OnClientDateSelectionChanged="DateSelectionChanged"
runat="server" TargetControlID="txtDate" PopupButtonID="imgPopup" />
<script type="text/javascript">
function DateSelectionChanged(e) {
var today = new Date();
var dob = e.get_selectedDate();
var months = (today.getMonth() - dob.getMonth() + (12 * (today.getFullYear() - dob.getFullYear())));
alert("Your age: " + Math.round(months / 12));
}
</script>
答案 0 :(得分:0)
你必须做
$('#<%=txtDate.ClientID %>').val("your value");
在 asp.net 中使用客户端ID - 推荐但是meh ..不是那么多。我会尽量避免在javascript中编写 ClientID 。
答案 1 :(得分:0)
试试这个: 使用jquery
$('[id$=txtDate]').val('your value');
或使用javascript
document.getElementById('txtDate').value='your value';