Set the value of an input field

前端 未结 15 1520
故里飘歌
故里飘歌 2020-11-22 00:54

How would you set the default value of a form text field in JavaScript?

15条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 01:48

    You can also try:

    document.getElementById('theID').value = 'new value';
    

提交回复
热议问题