使用jquery datepicker时如何清除/重置日期字段

时间:2015-11-22 18:57:07

标签: asp.net jquery-ui datepicker clear

当用户点击文本框时,我使用以下代码显示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();
    });

如何清除该字段?

1 个答案:

答案 0 :(得分:2)

要清除字段,您需要做的只是$("#StartDate").val("");

请参阅下面的评论,您可以看到有效的plunker