次のフォームがある場合、クリック イベントに使用されるフォーム ID に基づいて送信ボタンを選択するにはどうすればよいですか?
<form id="login">
<input type="text" name="email">
<input type="text" name="password">
<input type="submit" name="submit">
</form>
input[name=submit]
次のようなものは機能しますが、ページに複数ある可能性があるためだけではありません。
$('input[name=submit]').click(function (e) {
e.preventDefault();
console.log('clicked');
});