TypeError: '[object HTMLInputElement]' is not a function (evaluating 'elem[ type ]()') in jQuery form.submit()

后端 未结 3 749
执笔经年
执笔经年 2021-02-20 00:17

Has never run into this issue? I\'m getting this error in the latest release of jQuery. I tried with version 1.6.2 and there is no issue.

TypeError: \'[object HT         


        
3条回答
  •  孤独总比滥情好
    2021-02-20 00:50

    This usually happens if any of your input tag's name is submit. For example,

    On the above code, document.getElementById("frm").submit represents the input element. When you apply () to submit It shows this error.

提交回复
热议问题