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)
出错
应该要怎么写?
追问:牛人啊,这方面都涉及到了。