在JavaScript中,表单事件处理是一种常见的操作,用于响应用户与表单元素的交互。以下是一些常用的表单事件及其处理方法:
onsubmit
:当表单提交时触发。可以使用event.preventDefault()
阻止表单的默认提交行为。
const form = document.querySelector('form'); form.addEventListener('submit', (event) => { event.preventDefault(); // 处理表单数据 });
onsubmit
:当表单提交时触发。可以使用event.preventDefault()
阻止表单的默认提交行为。
const form = document.querySelector('form'); form.addEventListener('submit', (event) => { event.preventDefault(); // 处理表单数据 });
onchange
:当表单元素值发生变化时触发。
const input = document.querySelector('input'); input.addEventListener('change', (event) => { console.log('Input value changed:', event.target.value); });
oninput
:当表单元素值发生变化时触发。
const input = document.querySelector('input'); input.addEventListener('input', (event) => { console.log('Input value changed:', event.target.value); });
onfocus
:当表单元素获得焦点时触发。
const input = document.querySelector('input'); input.addEventListener('focus', (event) => { console.log('Input focused:', event.target.value); });
onblur
:当表单元素失去焦点时触发。
const input = document.querySelector('input'); input.addEventListener('blur', (event) => { console.log('Input lost focus:', event.target.value); });
onkeyup
:当表单元素值发生变化时触发(按键抬起)。
const input = document.querySelector('input'); input.addEventListener('keyup', (event) => { console.log('Input value changed:', event.target.value); });
onkeydown
:当表单元素值发生变化时触发(按键按下)。
const input = document.querySelector('input'); input.addEventListener('keydown', (event) => { console.log('Input value changed:', event.target.value); });
onclick
:当表单元素被点击时触发。
const button = document.querySelector('button'); button.addEventListener('click', (event) => { console.log('Button clicked'); });
这些事件处理程序可以根据需要组合使用,以便更好地控制表单的行为。