gpt4 book ai didi

jquery - $( "#target").submit();不工作

转载 作者:行者123 更新时间:2023-12-01 07:44:37 25 4
gpt4 key购买 nike

出于某种原因,我不明白为什么我的表单没有使用 $( "#target" ).submit(); 提交.

<html>
<head>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js'></script>
<script>
function saveItem()
{
console.log($("#frm"));
$("#frm").submit();
}
</script>
</head>
<body>
<form id="frm" action="form.php" method="post">
<a href="javascript:;" title="Save" onclick="saveItem()">save</a>
<button type="submit" id="submit">Save</button>
</form>
</body>
</html>

最佳答案

表单元素中的 id 属性无法submit,请尝试使用其他名称。

why we shouldn't set id as submit

因为如果表单控件(例如提交按钮)的名称或 ID 为 Submit,它将屏蔽表单的提交方法。

关于jquery - $( "#target").submit();不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40974257/

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