本文介绍了无法使用jQuery添加或更改onSubmit()属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个表格和两个按钮.我想使用jQuery使用这些按钮更改表单的onsubmit attribute.

I have a form and two buttons. I want to change the onsubmit attribute of the form using these buttons using jQuery.

我尝试了

$("#form").attr("onsubmit","newValue")

但这不会更改onsubmit属性,也不会将该属性添加到表单中.

but this doesn't change the onsubmit attribute nor add the attribute to the form.

请帮助.

推荐答案

只需使用$(#form").submit();

Just use $("#form").submit();

赞:

$("#form").submit(function(e){
//Prevent form submit: e.preventDefault()
//Do whatever
});

这篇关于无法使用jQuery添加或更改onSubmit()属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 02:11