duanjun7801 2013-08-15 07:32
浏览 49
已采纳

Yii:成功表单提交的JavaScript回调

I want a JavaScript callback on successful save of an active form. Where can I put the JavaScript callback?

Do I need to make the form AJAX in order to do this or is is doable with regular (non-AJAX) forms?

In fact, I am going to put this form inside an iframe (inside a jQuery UI modal dialog).

When the form in the iframe is saved I need to do two things:

  1. close the dialog;
  2. update the list of things in a <select> of the main HTML document.
  • 写回答

2条回答 默认 最新

  • dtvnbe1428 2013-08-15 07:43
    关注

    Try to put ajax handler on form submit, here is a live code from my project as example:

     echo CHtml::ajaxSubmitButton('submit',          
            array('index'), 
            array(
                    'type'=>'POST',
                    'data' => array(),
                    'success' => 'js:function(){/*callback*/}', 
            ));
    

    Please, remember to give this button an unique (prefix_random) id to avoid inconvenionces

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?