国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁javascripttext_inputJavascript Form - 如何清除輸入文本框值

Javascript Form - 如何清除輸入文本框值

我們想知道如何清除輸入文本框值。

<!DOCTYPE html>
<html>
<body>
  <script>
window.onload = function(){
 document.getElementById("user").value = "";
}
</script>
  <form method="POST" action="">
    <input name="username" id="user" value="test" /><br /> 
    <input name="pwd" id="pass" value="test" /> 
    <input type="submit" value="Go" />
  </form>
</body>
</html>