为什么这不会提交表单?(fyi我不想使用input type ='Submit'),函数调用有效。
<button onclick='submitForm()'>Save</button>
function submitForm() {
alert('Run');
//Do some more things
$('form#myForm').submit();
}
答案 0 :(得分:0)
你为什么不这样做:
<button>Save</button>
和此:
$("button").click(function() { //change the selector
alert('hello');
$("form").submit();//change the selector
});
答案 1 :(得分:0)
代码中似乎没有任何错误,请检查您是否在页面中包含了jQuery。