我想要一种将日期选择器添加到我所有日期时间文本框的快速方法
我正在使用剃须刀,它创建了我的文本框,如下所示
<input type="datetime"... />
我可以用什么 jquery 函数来找到这些?
我尝试过
$(document).ready(function () {
this.filter('input:datetime').each(function () {
$(this).datepicker();
});
});
但我使用最新版本的 jquery 得到“不支持属性过滤器”
谢谢
编辑:添加模式代码
选项1:
public Nullable<System.DateTime?> ShippedDate { get; set; }
选项2
Public DateTime _ShippedDate = DateTime.Now;
public Nullable<System.DateTime> ShippedDate {
get { return _ShippedDate ; }
set { _ShippedDate = value; }
}