如何清空輸入字段

學習如何在獲得焦點時清空輸入字段。

點擊輸入字段以清除其內容:

獲得焦點時清空輸入字段

<!-- 當輸入字段獲得焦點時,將其當前值替換為空字符串 -->
<input type="text" onfocus="this.value=''" value="Blabla">

親自試一試

用按鈕清除輸入框

<button onclick="document.getElementById('myInput').value = ''">Clear input field</button>
<input type="text" value="Blabla" id="myInput">

親自試一試

相關頁面

教程:HTML 表單