对象#的属性“提交”不是函数

对象#的属性“提交”不是函数,第1张

对象#的属性“提交”不是函数

检查表单,查看是否有

HTMLInputElement
ID为或ID 为的ID
submit

这将一个属性设置

submit
HTMLFormElement
,所以
submit
不能被执行,其是在表格元件的原型函数。

例:

<form  id="form" action="/mailer.php" method="post">    ​<input type="button" name="submit" value="go"/></form>​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​

js:

​console.log($("#form")[0].submit)​;​  // will be the button element, not the submit function.

jQuery的

.submit()
方法将
.submit()
在原始dom元素上调用,因此将发生错误。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5675770.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存