如何在 JavaScript 中在單擊按鈕後清空文字欄位?


為此,你可以使用 onclick=”yourFunctionName()”,以及 −

document.getElementById(“”).value=’’

示例

 線上演示

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initialscale=1.0">
<title>Document</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fontawesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<input type-="text" id="txtBox" placeholder="Enter the value...."/>
<button type="button" id="clear" onclick="clearTheTextField()">ClearInputText</button>
<script>
   function clearTheTextField(){
      console.log("The text box
      value="+document.getElementById('txtBox').value)
      document.getElementById('txtBox').value = '';
   }
</script>
</body>
</html>

要執行上述程式,請將檔名另存為 anyName.html(index.html),然後右鍵單擊檔案,並選擇在 VS Code 編輯器中使用 Live Server 開啟的選項。

輸出

這將生成以下輸出 −

現在輸入某些值到文字框中並單擊 ClearInputText 按鈕。

輸入值後,單擊該按鈕。

這將生成以下輸出 −

更新於:2020-09-14

2 千個以上瀏覽次數

開啟您的 事業

完成課程即可獲得認證

開始
廣告
© . All rights reserved.