Whats the difference between onclick and onsubmit?(onclick 和 onsubmit 有什么区别?)
问题描述
这不是我没有google过...但是我还是不明白什么时候使用onsubmit
,什么时候使用onclick
?
It's not like I haven't googled it... But still I couldn't understand when onsubmit
is used and when onclick
is used?
推荐答案
它们是两个完全独立的事件.
They're two completely separate events.
onclick
事件在用户使用鼠标点击某物时触发.
onclick
events fire when the user uses the mouse to click on something.
onsubmit
事件在提交表单时触发.此事件的起源有时可以追溯到 onclick
(如单击提交"按钮),但它也可能来自键盘事件(如按 enter).
onsubmit
events fire when a form is submitted. The origin of this event can sometimes be traced back to an onclick
(like clicking the "submit" button) but it can also come from a keyboard event (like pressing enter).
这意味着在表单上的提交按钮上使用 onclick
可能会错过表单上的 onsubmit
会捕获的某些情况.
This implies that using onclick
on a submit button on a form might miss some cases that an onsubmit
on the form would catch.
还有许多其他类型的事件,例如:onload
用于加载脚本或图像等资源,onkeydown
用于检测键盘上的按键.
There are many other kinds of events such as: onload
for loading resources such as scripts or images and onkeydown
for detecting key presses on the keyboard.
这篇关于onclick 和 onsubmit 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:onclick 和 onsubmit 有什么区别?
基础教程推荐
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01