当前位置:编程学习 > JS >>

jquery ajax success 后怎么调用 其它的 功能函数

jquery ajax success 后怎么调用 其它的 功能函数?

 

            $('#btnUpdate').click(function () {
                $.ajax({
                    url: '/TClient/Update',
                    type: 'post',
                    datatype: 'json',
                    data: $('#form1').serialize(),
                    success: function (data) {
                        if (data != null) {
                            if (data != "success")

                                ymPrompt.alert({ message: data, title: "警告", showMask: false });
                            else {
                                ymPrompt.succeedInfo({ message: "操作成功", title: "成功", showMask: false });
                            }
                        }
                    }
                });
            });

 

 

我想把 success的 函数写成一个独立的功能函数

 

function msgAlert(msg)

{

 。。。。。。

}

 

但我写了

在 Success:msgAlert(data)

出错

应该要怎么写?

追问:牛人啊,这方面都涉及到了。

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,