jQuery submit, how can I know what submit button was pressed?

前端 未结 8 1598
盖世英雄少女心
盖世英雄少女心 2020-12-14 23:43

I\'m using ajaxSubmit plugin to send Ajax forms, but for some reason this plugin doesn\'t send names/values of input[type=image]\'s. So now I\'m catching the su

8条回答
  •  悲&欢浪女
    2020-12-15 00:30

    $(document).ready(function() {
        var clickedVar = null;
        $('#form :submit').focus(function() {
             clickedVar = $(this).attr("name");
             alert(clickedVar);
        });
    });
    

提交回复
热议问题