Text box not getting reset

后端 未结 4 1931
没有蜡笔的小新
没有蜡笔的小新 2021-01-21 23:47

I have a text box and I tried to reset it after a button click. But it is not getting reset. HTML Script:-

    

        
4条回答
  •  心在旅途
    2021-01-22 00:09

    To clear the value of input box use :

      document.getElementById('pre-selected-options').value = "";
    

    https://www.w3schools.com/howto/howto_html_clear_input.asp

提交回复
热议问题