AI智能回复搜索中,请稍后...
1 回答
function _ajax_post_alert_processer(result)
{
if (typeof(result.errno) == 'undefined')
{
alert(result);
}
else if (result.errno != 1)
{
alert(result.err);
}
else
{
if (result.rsm && result.rsm.url)
{
window.location = decodeURIComponent(result.rsm.url);
}
else
{
window.location.reload();
}
}
}