我尝试将日期与时间选择器控件一起使用,我使用了此链接中的代码http://www.aspsnippets.com/Articles/Implement-DateTimePicker-in-ASP.Net-using-jQuery-Plugin.aspx 当我点击更改时间时,在屏幕上的任何位置移动鼠标时,自动滚动时间。这段代码中是否有任何错误?
script src="Scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
$(document).ready(function () {
$("#<%=TextBox1.ClientID %>").dynDateTime({
showsTime: true,
ifFormat: "%Y/%m/%d %H:%M",
daFormat: "%l;%M %p, %e %m, %Y",
align: "BR",
electric: true,
singleClick: true,
displayArea: ".siblings('.dtcDisplayArea')",
button: ".next()"
});
});