Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
datetimepickers单击重置按钮后如何设置两个的空值:
datetimepickers
$("#reset").click(function () { $(".k-datetimepicker input").val(''); }
您需要额外的)来关闭该click功能:
)
click
$("#reset").click(function() { $(".k-datetimepicker input").val(''); });
http://jsfiddle.net/ZX6mF/