【发布时间】:2012-02-20 17:23:56
【问题描述】:
很抱歉,我找不到任何答案。
这是一个已知问题吗?有解决办法吗?
请帮忙。我想在 ASP.net Server Controls 中使用 JQueryUI
示例脚本
$(document).ready(function () {
$('#txtSearch').datepicker({
showPeriod: true,
showLeadingZero: true
});
$('#Text1').datepicker({
showPeriod: true,
showLeadingZero: true
});
});
示例标记
<input id="Text1" type="text"/>
<asp:TextBox ID="txtSearch" runat="server" Height="21px" Width="196px">
</asp:TextBox>
问题是它在普通的 html 控件上工作,而不是在 asp 控件上 我感谢任何帮助。谢谢!
【问题讨论】:
标签: javascript asp.net jquery-ui