refresh textarea when click a buttton
To refresh a textarea when clicking a button, you could use JavaScript to clear the value of the textarea element.
Here's an example code snippet:
HTML:
<textarea id="myTextarea"></textarea>
<button id="myButton">Refresh</button>
JavaScript:
const myTextarea = document.getElementById('myTextarea');
const myButton = document.getElementById('myButton');
myButton.addEventListener('click', () => {
myTextarea.value = '';
});
In this code, we first get references to the textarea element and the button element using their IDs. We then add an event listener to the button that listens for a 'click' event. When the button is clicked, the event listener function is called, which sets the value of the textarea to an empty string, effectively clearing its contents.
原文地址: https://www.cveoy.top/t/topic/bcQp 著作权归作者所有。请勿转载和采集!