0

有人能告诉我为什么我的 submit() 没有触发吗?

如果我尝试使用我的 submit() 删除 alertify.confirm() ,它就可以工作。

$('.myBtn').click(function(){
    alertify.confirm("Confirmation",function(e){
        if(e){
            $(this).closest('form').submit();
        }else{
             alertify.error('Nope');
        }
    });
});
4

1 回答 1

0

这是我发现的最相似的方式来做我想做的事。$('.myBtn') 是表单内的普通按钮。我用一个类来称呼它,因为它们是一组形式。

$('.myBtn').click(function(){
$btn = $(this);
alertify.confirm("Confirmation",function(e){
    if(e){
        $btn.closest('form').submit();
    }else{
         alertify.error('Nope');
    }
});

});

于 2017-05-19T13:57:12.730 回答