<div class = "search ui-widget">
<label for = "keyword"></label>
<input type="text" id="keyword" onkeypress="searchKeyPress(event)" placeholder="Search here" required>
<input type="button" id="btnSearch" onclick="loadDeals('search', keyword.value,'')" />
</div>
$('.search input#keyword').Value('');
基本上我想要的是在用戶單擊另一個菜單選項卡後刪除用戶在文本框中的輸入。我試過$('.search input#keyword').Value('');
和$('.search input#keyword').css("value", '');
但它沒有工作。如何刪除用戶使用JavaScript鍵入的文本輸入
該方法被稱爲'.val()'而不是'.Value()'。 – insertusernamehere