一个页面中有多个input输入框,我给每个input输入框加了一个onChange事件。我想要在输入框触发onChange事件的时候,获取到这些框的id或者是name,然后将他们放到一个字符串数组里。
2条回答 默认 最新
关注
<input type="text" id="userName" name="userName" onchange="getValue(this)"> <input type="text" id="phone" name="phone" onchange="getValue(this)"> <input type="text" id="email" name="email" onchange="getValue(this)"> <input type="text" id="city" name="city" onchange="getValue(this)"> <script> function getValue(event){ console.log(event.id, event.name, event.value) } </script>
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 3无用