﻿
function GetNotce()
{
    $.ajax({
        url:"/JsData/notice.ashx?action=getdata&time="+new Date().getTime()+"",
        type:'POST',
        success:function(msg)
        {
       
            if($.trim(msg)!="")
            {       
                 $.messager.lays(332, 220);
		               $.messager.showm(0,msg,0);
            }
        }
    });
}
