JS如何获取两个input的值,判断其中一个有值的提交,为空的不提交?

同一个页面有两个form,按回车只提交有值的那个input
2024年11月19日 00:21
有1个网友回答
网友(1):

把这两个input全部获取,取值判断就可以咯。

var inputA = document.getElementById('inputAId');
var inputB = document.getElementById('inputBId');
if(inputA.value != ''){
    alert('提交InputA');
    return;
}
if(inputB.value != ''){
    alert('提交InputB');
    return;
}