要更改
<input>
或 <textarea>
元素中的值,您需要设置其 value
属性。
HTML:
<input id="my-input" type="text" />
<textarea id="my-textarea"></textarea>
JS:
const input = document.getElementById('my-input')
const textarea = document.getElementById('my-textarea')
input.value = 'Test input value'
textarea.value = 'Test textarea value'