当用户点击文本框时,我使用以下代码显示datepicker。
var stdin = process.openStdin();
stdin.addListener("data", function(d) {
// note: d is an object, and when converted to a string it will
// end with a linefeed. so we (rather crudely) account for that
// with toString() and then substring()
console.log("you entered: [" + d.toString().trim() + "]");
});
这工作正常但是一旦用户选择了日期,就无法清除该文本框,因为所有键都被禁用。
我尝试在该文本框中使用以下内容,但它不起作用。
<asp:TextBox ID="StartDate" ClientIDMode="Static" runat="server" Text="" class="mytextbox"></asp:TextBox>
$(function () {
$("#StartDate").datepicker();
});
如何清除该字段?