a标签 href提交表单: submit is not a function

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了a标签 href提交表单: submit is not a function相关的知识,希望对你有一定的参考价值。

<form name="detailForm" action="adminSearchPerformance.do" method="post">
<input type="hidden" value="$userPerformance.userId" name="userId"/>
<input type="hidden" value="$userPerformance.userName" name="teacherName"/>
<input type="hidden" value="1" name="admin"/>
</form>
<a href="javascript:document.detailForm.submit();" class="a-comm">查看详情</a></td>

<a href="javascript:document.getAll["detailForm"].submit();" class="a-comm">查看详情</a></td>追问

没有用

追答

那就该一个Id

查看详情

参考技术A <form name="detailForm" name="detailForm" 。。。
form 加id
<a href="javascript:document.getElementbyId("detailForm").submit();" class="a-comm">查看详情</a>

js提交表单错误:document.form.submit() is not a function

今天在写JS时,遇上这么个错误:“document.form.submit() is not a function”,经过一番搜索,最终找到了修复方法。

这个错误一般是由于表单<form>…</form>中含有name=”submit”时,提交时就会有冲突,这个错误常见于按钮上,如:

在Javascript做submit()的时候就会出现冲突,这时将name=”submit”改成别的名字就可以了;即使不是按钮,在表单的输入框中使用了<input name=”submit” type=”text” />,这样也是不行的。或是在js变量中声明了一个名为submit的变量时,也会导致出现这个错误。总之submit在一些情况下属于保留字,应当尽量避免命名为submit。

以上是关于a标签 href提交表单: submit is not a function的主要内容,如果未能解决你的问题,请参考以下文章

BUG-jQuery提交表单submit方法-TypeError: e[h] is not a function

js笔记神奇的js将a标签转换为超强的submit按钮

form表单的两种提交方式,submit和button的用法

使用 <a> 标签提交表单

submit异步提交 回调的方法

html 表单一定要用submit提交吗