window属性:onsubmit
onsubmit属性
窗口上submit事件的事件处理程序。
onsubmit属性语法
window.onsubmit = funcRef;
参数
- funcRef是对一个函数的引用。
onsubmit属性示例
<html>
<script>
function reg() {
window.captureEvents(Event.SUBMIT);
window.onsubmit = hit;
}
function hit() {
console.log('hit');
}
</script>
<body onload="reg();">
<form>
<input type="submit" value="submit" />
</form>
<div id="d"> </div>
</body>
</html>
笔记
当用户单击表单(<input type="submit"/>)中的提交按钮时,会引发submit事件。
用户直接调用form.submit()函数时不会引发submit事件。
规范
规范 | 状态 | 注释 |
---|---|---|
HTML Living Standard 在该规范中的'onsubmit'的定义。 | Living Standard |
浏览器兼容性
我们正在将兼容性数据转换为机器可读的JSON格式。
- 电脑端
特征 | Chrome | Edge | Firefox(Gecko) | Internet Explorer | Opera | Safari(WebKit) |
---|---|---|---|---|---|---|
基本支持 | 支持 | 支持 | ? | ? | ? | ? |
- 移动端
特征 | Android | Android Webview | Chrome for Android | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|---|---|
基本支持 | ? | 支持 | 支持 | 支持 | ? | ? | ? | ? | ? |