0

我想在 ajaxoptions 的选项中捕获 javascript/PHP 变量。例如;

CHtml::ajaxLink("My link", Yii::app()->createUrl('controller/definition'), array(
                'data' => array("id" => $model->id),
                'type' => 'POST',
                'error' => 'js:function(data){}',
                'beforeSend' => 'js:function(request){}',
                'success' => 'js:function(data){
                         alert(jQuery(this).attr("id"));
                         alert({$model->id});
                 }',
                'complete' => 'js:function(data){}',
                    //'update'=>'#where_to_put_the_response',
                    ), array(
                "confirm" => "Are you sure you want to delete?",
                        "id" => "linkID",
                        "href" => "javascript:;",
                        "title" => "mTitle"
                    )
            );

在成功选项中,我有两个警报向您展示我想要它的方式。哪个不显示正确的数据。有没有办法获取 php 变量和 jQuery(this) 对象?

4

1 回答 1

0

我已经从“jQuery(this)”中提取了我想要的数据。实际上“jQuery(this)”以不同的格式返回了我的数据。下面是代码。

   CHtml::ajaxLink("My link", Yii::app()->createUrl('controller/definition'), array(
                    'data' => array("id" => $model->id),
                    'type' => 'POST',
                    'error' => 'js:function(data){}',
                    'beforeSend' => 'js:function(request){
                          mdata=(jQuery(this)[0]["data"]).replace( /^\D+/g, "");
                     }',
                    'success' => 'js:function(data){
                             alert(mdata);
                     }',
                    'complete' => 'js:function(data){alert(mdata);}',
                        //'update'=>'#where_to_put_the_response',
                        ), array(
                    "confirm" => "Are you sure you want to delete?",
                            "id" => "linkID",
                            "href" => "javascript:;",
                            "title" => "mTitle"
                        )
                );

如果提醒“jQuery(this)”之类alert(JSON.stringify(jQuery(this)));的 - 您将了解返回的数据。

于 2013-06-18T18:49:12.393 回答