﻿function AjaxTitle(id) {
    $.ajax({
        type: "get",
        url: "/TeaBusiness/AjaxDefault.aspx?ID=" + id,
        success: function(data, textStatus) {
            var ds = data.split('|');
            $('#myphoto').html(ds[0]);
            $('#myname').html(ds[1]);
            $('#mytitle').html(ds[2]);
            $('#mycontent').html(ds[3]);

        },
        error: function() { }

    })
}
