gpt4 book ai didi

javascript - 通过id提交表单的函数

转载 作者:行者123 更新时间:2023-11-28 00:01:56 25 4
gpt4 key购买 nike

如何使用表单 ID 作为函数参数来提交表单?会是这样吗:

HTML:

<a href="#" onclick="confirmSubmit(form1)">Delete file</a>

Javascript:

function confirmSubmit(id) {
var agree=confirm("Are you sure you wish to delete this file?");
if (agree)
document.getElementById('form' + id).submit();
else
return false;
}

最佳答案

您可以将表单 ID 作为字符串参数(即用单引号括起来)传递给 onClick 函数。

见下文

<a href="#" onclick="confirmSubmit('form1')">Delete file</a>
function confirmSubmit(id) {
var agree=confirm("Are you sure you wish to delete this file?");
if (agree)
document.getElementById(id).submit();
else
return false;
}

关于javascript - 通过id提交表单的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31720145/

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