﻿$.ajax({
    url: '../../Controls/hf_index/ProcessMember.ashx',
    type: 'POST', cache: false, async: true, datatype: 'text',
    error: function (err) { alert('系統忙碌中...'); },
    success: function (oData) {
        $(function () {
            $('#ltlMember').html(oData);
            //會員已登入
            $('#MemberLogin a[href]').each(function (i) { $(this).click(function () { _wtc(webTrendCode.MemberLogin[i]['L']); }); });
            //會員未登入
            $('#MemberLogout a[href]').each(function (i) { $(this).click(function () { _wtc(webTrendCode.MemberLogout[i]['L']); }); });
        });
    }
});

