gpt4 book ai didi

javascript - 为点击事件选择特定表单的提交按钮

转载 作者:搜寻专家 更新时间:2023-11-01 05:01:46 25 4
gpt4 key购买 nike

如果我有以下表单,如何根据要用于点击事件的表单 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');

});

最佳答案

这将自动选择表单的提交控件:

$('#login :submit').click(...);

http://api.jquery.com/submit-selector/

干杯

关于javascript - 为点击事件选择特定表单的提交按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13408546/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com