Javascript 使用自定义按钮提交表单?

发布于 2024-12-29 16:16:27 字数 153 浏览 0 评论 0原文

想象一个带有多个提交按钮的 HTML 表单, 我正在尝试编写 javascript 函数来使用一个特定按钮提交此表单, 通常我们使用:

form.submit();

但它没有指定按下哪个按钮,

有什么想法吗?

Imagine an HTML form with multiple submit buttons,
Im trying to write javascript function to submit this form with one specific button,
usually we use:

form.submit();

but it doesnt specify which button is pressed,

any Ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我不会写诗 2025-01-05 16:16:27

直接开火就可以了?

document.querySelector("#someButton").onclick();

或者,如果您想直接触发表单的提交按钮,为什么不呢

document.querySelector("#someForm input[type='submit']").onclick();

Just fire it directly?

document.querySelector("#someButton").onclick();

Or if you're wanting to fire the submit button directly of a form, why not

document.querySelector("#someForm input[type='submit']").onclick();
盗琴音 2025-01-05 16:16:27

使用 jQuery,您可以在绑定到所需按钮上的单击事件的事件处理程序中提交表单:

$('.trueSubmitFormButton').click(function(){
    form.submit();
});

Using jQuery, you'd submit the form in an event handler that is bound to the click event on the desired button:

$('.trueSubmitFormButton').click(function(){
    form.submit();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文