JQuery submit not working in Chrome

后端 未结 3 460
情书的邮戳
情书的邮戳 2021-01-20 00:25

Following is the form

@using (Html.BeginForm(MVC.CollectionPlanConfirmation.ActionNames.Edit, MVC.CollectionPlanConfirmation.Name, FormMethod.Post, new { @id         


        
3条回答
  •  不要未来只要你来
    2021-01-20 01:05

    Try this:

    HTML

    
    

    SCRIPT

    $(function () {
        $(document).on('click', '.aSubmit', function () {
            $('#collectionPlanForm').submit();
        });
    });
    

    DEMO FIDDLE

提交回复
热议问题