Reset textbox value in javascript

后端 未结 9 1029
执笔经年
执笔经年 2020-12-13 17:16

If I have a input textbox like this:


How can I set the value of the t

9条回答
  •  情深已故
    2020-12-13 17:45

    With jQuery, I've found that sometimes using val to clear the value of a textbox has no effect, in those situations I've found that using attr does the job

    $('#searchField').attr("value", "");
    

提交回复
热议问题