按钮表单提交无效

时间:2014-03-10 17:46:25

标签: jquery html

为什么这不会提交表单?(fyi我不想使用input type ='Submit'),函数调用有效。

<button  onclick='submitForm()'>Save</button>

function submitForm() {
    alert('Run');
    //Do some more things
    $('form#myForm').submit();
}

2 个答案:

答案 0 :(得分:0)

你为什么不这样做:

<button>Save</button>

和此:

$("button").click(function() { //change the selector
    alert('hello');
    $("form").submit();//change the selector
});

答案 1 :(得分:0)

代码中似乎没有任何错误,请检查您是否在页面中包含了jQuery。