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

前端 未结 8 1605
盖世英雄少女心
盖世英雄少女心 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:42

    This will catch whichever input element initiated the submit:

    $(document).ready(function() {
        var target = null;
        $('#form :input').focus(function() {
            target = this;
            alert(target);
        });
        $('#form').submit(function() {
            alert(target);
        });
    });
    

提交回复
热议问题