Additional jQuery events submitting my Ajax.BeginForm

后端 未结 5 484
粉色の甜心
粉色の甜心 2021-01-01 07:42

I have an ASP.Net MVC Ajax.BeginForm that submits and updates my page properly when I click the submit button.

The problem is I need additional events to do the sa

5条回答
  •  感情败类
    2021-01-01 07:47

    Change -

    bind("change", function() { $("#ViewCartPage form").submit() });
    

    to -

    bind("change", function() { $("#ViewCartPage form").onsubmit() });
    

提交回复
热议问题