JS清空输入文本框内容

it2022-05-05  138

通过JS的DOM对象进行操作

<script> function clear_content() { document.getElementById("username").value=""; document.getElementById("password").value=""; } </script>

最新回复(0)