现在submitter
提交事件中有一个标准属性。
已经在 Firefox 中实现了!
document.addEventListener('submit',function(e){
console.log(e.submitter)
})
在 jQuery 中,您只需编写
$(".myForm").on('submit', function(e){
e.originalEvent.submitter
});
对于不支持它的浏览器,请使用此 polyfill:
!function(){
var lastBtn = null
document.addEventListener('click',function(e){
if (!e.target.closest) return;
lastBtn = e.target.closest('button, input[type=submit]');
}, true);
document.addEventListener('submit',function(e){
if (e.submitter) return;
var canditates = [document.activeElement, lastBtn];
for (var i=0; i < canditates.length; i++) {
var candidate = canditates[i];
if (!candidate) continue;
if (!candidate.form) continue;
if (!candidate.matches('button, input[type=button], input[type=image]')) continue;
e.submitter = candidate;
return;
}
e.submitter = e.target.querySelector('button, input[type=button], input[type=image]')
}, true);
}();