Sunucu yanıtını kontrol edin

Sunucu yanıtı
NS kayıtları
Whois alanı
Yanıt başlıkları
İstek başlıkları
Ham HTML kodu
200 OK - aiekf.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Fri, 23 May 2025 21:56:51 GMT
Server: Apache
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Pragma: no-cache
Cache-control: private
X-Powered-By: ThinkPHP
Set-Cookie: PHPSESSID=lpcbbale2ksark86moe43hjst1; path=/; HttpOnly
Upgrade: h2
Connection: Upgrade, close
Vary: Accept-Encoding
Transfer-Encoding: chunked
Content-Type: text/html; charset=utf-8

HTTP Kodu 200 OK

200 durum kodu, standart bir başarılı HTTP sunucu yanıtıdır. Bu, istemcinin isteğinin (örneğin, bir tarayıcıdan) başarıyla işlendiği ve sunucunun istenen verileri ilettiği anlamına gelir.

Kod 200 ne zaman kullanılır?

  • Bir web sayfası yüklenirken
  • Bir API yanıtı başarıyla alındığında
  • Bir form veya başka bir HTTP isteği işlenirken

Kod 200 kullanıcı için ne anlama gelir?

Kullanıcı içeriği hatasız alır ve sayfa veya uygulama düzgün çalışır. Kod 200'e veri eşlik ediyorsa, tarayıcı veya program bunu işler ve kullanıcıya görüntüler.

GET / HTTP/1.1
Host: aiekf.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>江门自闭症康复训练/江门自闭症-蓬江区爱儿健康管理服务中心</title>
    <meta name="Keywords" content="江门自闭症;江门自闭症治疗;江门自闭症康复训练;江门蓬江区自闭症;孤独症康复治疗训练;江门语言/行为康复治疗;蓬江区爱儿健康管理服务中心;" />
    <meta name="Description" content="蓬江区爱儿健康管理服务中心是专门为自闭症、多动症、语言发育迟缓等成长问题儿童及家长提供评估、训练、教育、咨询、指导的专业服务机构。本中心拥有十多年自闭症教学经验的老师。中心拥有近700平方训练场地,设有感觉统合室、个训室、游戏文化干预室、小组课室、个人工作系统室。" />
    <LINK href="/Public/Web/css/style.css" rel=stylesheet>
    <script language="JavaScript" type="text/javascript" src="/Public/Web/js/urlredirect.js"></script>
    <script language="JavaScript" type="text/javascript" src="/Public/Web/js/jquery.js"></script>
    <script language="JavaScript" type="text/javascript" src="/Public/Web/js/search.js"></script>
    <script language="JavaScript" type="text/javascript" src="/Public/Web/js/pic.js"></script>
    <script language="JavaScript" type="text/javascript" src="/Public/Web/js/arrow.js"></script>
    <script language="JavaScript" type="text/javascript" src="/Public/Web/js/banner.js"></script>
    <script language="JavaScript" type="text/javascript" src="/Public/Web/js/inc.js"></script>

      <script>
        // JavaScript Document
$(function() {
    var sWidth = $("#focus").width(); //获取焦点图的宽度(显示面积)
    var len = $("#focus ul li").length; //获取焦点图个数
    var index = 0;
    var picTimer;

    //以下代码添加数字按钮和按钮后的半透明长条
    var btn = "<div class='btn'>";
    for(var i=0; i < len; i++) {
        //btn += "<span>" + (i+1) + "</span>";
        btn += "<span>&nbsp;</span>";
    }
    btn += "</div>"
    $("#focus").append(btn);
    //$("#focus .btnBg").css("opacity",0.5);

    //为数字按钮添加鼠标滑入事件,以显示相应的内容
    $("#focus .btn span").mouseenter(function() {
        index = $("#focus .btn span").index(this);
        showPics(index);
    }).eq(0).trigger("mouseenter");

    //本例为左右滚动,即所有li元素都是在同一排向左浮动,所以这里需要计算出外围ul元素的宽度
    $("#focus ul").css("width",sWidth * (len + 1));

    //鼠标滑上焦点图时停止自动播放,滑出时开始自动播放
    $("#focus").hover(function() {
        clearInterval(picTimer);
    },function() {
        picTimer = setInterval(function() {
            if(index == len) { //如果索引值等于li元素个数,说明最后一张图播放完毕,接下来要显示第一张图,即调用showFirPic(),然后将索引值清零
                showFirPic();
                index = 0;
            } else { //如果索引值不等于li元素个数,按普通状态切换,调用showPics()
                showPics(index);
            }
            index++;
        },3000); //此3000代表自动播放的间隔,单位:毫秒
    }).trigger("mouseleave");

    //显示图片函数,根据接收的index值显示相应的内容
    function showPics(index) { //普通切换
        var nowLeft = -index*sWidth; //根据index值计算ul元素的left值
        $("#focus ul").stop(true,false).animate({"left":nowLeft},500); //通过animate()调整ul元素滚动到计算出的position
        $("#focus .btn span").removeClass("on").eq(index).addClass("on"); //为当前的按钮切换到选中的效果
    }

    function showFirPic() { //最后一张图自动切换到第一张图时专用
        $("#focus ul").append($("#focus ul li:first").clone());
        var nowLeft = -len*sWidth; //通过li元素个数计算ul元素的left值,也就是最后一个li元素的右边
        $("#focus ul").stop(true,false).animate({"left":nowLeft},500,function() {
            //通过callback,在动画结束后把ul元素重新定位到起点,然后删除最后一个复制过去的元素
            $("#focus ul").css("left","0");
            $("#focus ul li:last").remove();
        });
        $("#focus .btn span").removeClass("on").eq(0).addClass("on"); //为第一个按钮添加选中的效果
    }
});

      </script>
    <!--[if IE]>
    <script type="text/javascript" src="/Public/Web/js/pie.js"></script>
    <SCRIPT>
        $(function() {
            if (window.PIE) {
                $('.casePicUl .more a,#focus .btn span').each(function() {
                    PIE.attach(this);
                });
            }
        });
    </SCRIPT>
    <![endif]-->
    
	<style>body{background:;}</style><div style="display:none">
<script src="https://s19.cnzz.com/z_stat.php?id=1274152593&web_id=1274152593" language="JavaScript"></script>
</div>    <link rel="stylesheet" href="/Public/Web/css/common.css">
    <style>
        .ntbg,.proBg,.casePicUl li:hover,.casePicUl li:hover{background-color:#dcf0fb;}
         .nav li {
		width: 125px;
		}
      .nav li a {width: 125px;}
      .nav .on a {width: 141px;}
      #navChild {width: 130px;}
      #navChild a {width: 100px;display:block;margin: 0 auto;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;}
    </style>
<meta name="__hash__" content="6666cd76f96956469e7be39d750cc7d9_332f21f519bbd5ff008f3129d20d0651" /></head>
<body>

<div class="header">
    <div class="ntbg">
        <div class="ntbd">
                        <div class="notice">
                <div class="title">中心动态:</div>
                <div class="noticenr">
                    <marquee  onmouseover="this.stop()" onMouseOut="this.start()" scrollamount="2"  >
                                                                                                                                                                                                                                            </marquee>
                </div>
            </div>
            
                        <!-- end notice-->
            <div class="toptel">全国服务热线:<span>0750-3186680</span></div><!-- end toptel-->
        </div><!-- end ntbd-->
    </div><!-- end ntbg-->
    <div class="top">
        <div class="logo">
            <a href="/"><img src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dc611c2a9f994.62778911.png" ></a>
        </div><!-- end logo-->
        <div class="search">
            <form method="get" action="/Search/" onsubmit="return checksearch(this)">
                <input class="text" name="key" value="请输入关键字" onfocus="if(this.value==defaultValue)this.value=''" onblur="if(this.value=='')this.value=defaultValue">
                <input class="btnsubmit" type="submit" value="" >
            <input type="hidden" name="__hash__" value="6666cd76f96956469e7be39d750cc7d9_332f21f519bbd5ff008f3129d20d0651" /></form>

        </div><!-- end search-->
    </div><!-- end top-->
    <div  class="navgrp">
        <ul class="nav" id="nav">
            <li rel="/"><a href="/">网站首页</a></li>
                        <li rel="/zhongxinb/"><a href="/zhongxinb/">中心简介</a>
                            </li>
                        <li rel="/kechengl/"><a href="/kechengl/">教学特色</a>
                                    <div id="navChild">
                                                <a href="/gebiefud/" title="个别辅导训练(一对一)">个别辅导训练(一对一)</a>
                                                <a href="/xiaozuyo/" title="小组游戏课">小组游戏课</a>
                                                <a href="/yinlezhi/" title="音乐治疗教学">音乐治疗教学</a>
                                                <a href="/jingxike/" title="精细课教学">精细课教学</a>
                                                <a href="/gerengon/" title="个人工作系统">个人工作系统</a>
                                                <a href="/meiguoyi/" title="美国(ABA)应用行为分析方法">美国(ABA)应用行为分析方法</a>
                                                <a href="/jiegouhu/" title="结构化教学">结构化教学</a>
                                                <a href="/ganjueji/" title="感觉统合教学">感觉统合教学</a>
                                                <a href="/youxiwen/" title="游戏文化干预(PCI)教学">游戏文化干预(PCI)教学</a>
                                            </div>
                            </li>
                        <li rel="/zhongxinh/"><a href="/zhongxinh/">中心动态</a>
                                    <div id="navChild">
                                                <a href="/zhongxinkx/" title="中心新闻">中心新闻</a>
                                                <a href="/wPTUtn/" title="社会关注">社会关注</a>
                                            </div>
                            </li>
                        <li rel="/renshizi/"><a href="/renshizi/">认识自闭症</a>
                            </li>
                        <li rel="/huodongl/"><a href="/huodongl/">活动掠影</a>
                            </li>
                        <li rel="/zhongxin/"><a href="/zhongxin/">中心环境</a>
                            </li>
                        <li rel="/lianxiwo/"><a href="/lianxiwo/">联系我们</a>
                            </li>
                    </ul>
    </div><!-- end navgrp-->
<script>
$("document").ready(function(){
    banner_height(500);
});
</script>
<style>
.copyrightnr{padding: 30px 0;}

</style>
<div class="banner" >
    <div class="bann">
        <div id="focus">
            <ul>
                                <li><img src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dd601cceb7113.25445823.jpg"></li>
                                <li><img src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dc6127da51754.47997757.jpg"></li>
                                <li><img src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dc61b0dd1da09.38041709.jpg"></li>
                            </ul>
      </div><!-- end focus-->
    </div><!-- end bann-->
</div>








<!-- <div class="claListBox">
    <div class="claListList">
        <div class="claListTitle">推荐分类</div>
        <ul class="claListUlList">
                        <li><a href="/zhongxinkx/" class="claListUlListHover">中心新闻</a></li>
                        <li><a href="/wPTUtn/" class="claListUlListHover">社会关注</a></li>
                    </ul>
    </div>end claListUlList
</div>end claListBox
 -->

</div> <!-- end header-->

<div class="section ">
    <div class="TtitleBox">
        <div class="Ttitle">教学特色<span>COURSE LIST</span>
            <div class="Tmore"><a href="/kechengl/">查看更多 +</a></div>
        </div><!-- end Ttitle-->
        <!--<div class="caseLeft"><img src="/Public/Web/picture/arrow.png"></div>
        <div class="caseRight"><img src="/Public/Web/picture/arrowr.png"></div>-->
    </div><!-- end TtitleBox-->
    <div class="casebg">
        <div id="casePicUlId">
            <div class="casePicUlIdBox htmlpic1">
                <ul class="casePicUl">
                                        <li>
                        <div class="title">美国(ABA)应用行为分析方法</div>
                        <div class="pic" style="width:228px;height:168px;position:relative;display:block; background-color: #eee;">
                            <img style="max-width:228px;max-height:168px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dc3c8ac1685a8.32696400.jpg" alt="美国(ABA)应用行为分析方法" class="PicAuto"></div>
                        <div class="intro">应用ABA的理论,分析问题行为前后的因果联系,从而通过从确定孩子...</div>
                        <div class="more"><a href="/meiguoyi/760/" title="美国(ABA)应用行为分析方法">详情+</a></div>
                    </li>
                                        <li>
                        <div class="title">感觉统合教学</div>
                        <div class="pic" style="width:228px;height:168px;position:relative;display:block; background-color: #eee;">
                            <img style="max-width:228px;max-height:168px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dc3c74d4407b6.03092420.jpg" alt="感觉统合教学" class="PicAuto"></div>
                        <div class="intro">感觉统合教学基于儿童的神经需要,引导对感觉刺激作适当反应的训...</div>
                        <div class="more"><a href="/ganjueji/758/" title="感觉统合教学">详情+</a></div>
                    </li>
                                        <li>
                        <div class="title">游戏文化干预(PCI)教学</div>
                        <div class="pic" style="width:228px;height:168px;position:relative;display:block; background-color: #eee;">
                            <img style="max-width:228px;max-height:168px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dc3c7289d11c0.96517408.jpg" alt="游戏文化干预(PCI)教学" class="PicAuto"></div>
                        <div class="intro">游戏可以依据介入目标及儿童的特性量身订做,可以介入各种特定的...</div>
                        <div class="more"><a href="/youxiwen/757/" title="游戏文化干预(PCI)教学">详情+</a></div>
                    </li>
                                        <li>
                        <div class="title">个别辅导训练(一对一)</div>
                        <div class="pic" style="width:228px;height:168px;position:relative;display:block; background-color: #eee;">
                            <img style="max-width:228px;max-height:168px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dc3c6e61b0135.09344743.jpg" alt="个别辅导训练(一对一)" class="PicAuto"></div>
                        <div class="intro">运用结构化教学方法(ABA)应用行为分析疗法等多种训练方法将教育...</div>
                        <div class="more"><a href="/gebiefud/755/" title="个别辅导训练(一对一)">详情+</a></div>
                    </li>
                                        <li>
                        <div class="title">小组游戏课</div>
                        <div class="pic" style="width:228px;height:168px;position:relative;display:block; background-color: #eee;">
                            <img style="max-width:228px;max-height:168px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dc3c92ec478a9.45467740.jpg" alt="小组游戏课" class="PicAuto"></div>
                        <div class="intro">以游戏为媒介,让儿童在游戏中自然地获得肌肉协调与动作练习,学...</div>
                        <div class="more"><a href="/xiaozuyo/764/" title="小组游戏课">详情+</a></div>
                    </li>
                                        <li>
                        <div class="title">音乐治疗教学</div>
                        <div class="pic" style="width:228px;height:168px;position:relative;display:block; background-color: #eee;">
                            <img style="max-width:228px;max-height:168px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dc3c912334a80.14666393.jpg" alt="音乐治疗教学" class="PicAuto"></div>
                        <div class="intro">以节奏为基础,以综合性参与性,创造性和互动性为基本原理,有效...</div>
                        <div class="more"><a href="/yinlezhi/763/" title="音乐治疗教学">详情+</a></div>
                    </li>
                                        <li>
                        <div class="title">精细课教学</div>
                        <div class="pic" style="width:228px;height:168px;position:relative;display:block; background-color: #eee;">
                            <img style="max-width:228px;max-height:168px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dc3c8edb73ad7.60901129.jpg" alt="精细课教学" class="PicAuto"></div>
                        <div class="intro">通过剪、贴、画、撕、拆、写等操作,提高孩子们注意力,并锻炼手...</div>
                        <div class="more"><a href="/jingxike/762/" title="精细课教学">详情+</a></div>
                    </li>
                                        <li>
                        <div class="title">个人工作系统</div>
                        <div class="pic" style="width:228px;height:168px;position:relative;display:block; background-color: #eee;">
                            <img style="max-width:228px;max-height:168px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" src="https://xibaiimg.gz.bcebos.com/aierjkgl/5dc3c8c4d66042.05435807.jpg" alt="个人工作系统" class="PicAuto"></div>
                        <div class="intro">通过有系统的环境安排,有规律的学习流程,以及明显的视觉提示,...</div>
                        <div class="more"><a href="/gerengon/761/" title="个人工作系统">详情+</a></div>
                    </li>
                                    </ul>
            </div><!-- end casePicUlId-->
            <div class="casePicUlIdBox htmlpic2"></div><!-- end casePicUlId-->
        </div><!-- end casePicUlIdBox-->
    </div><!-- end casePic-->
</div>
<div class="section" style="background:url(https://xibaiimg.gz.bcebos.com/aierjkgl/5dc8c1e6be8507.79506509.jpg) no-repeat;height:410px;width: 1920px;left: 50%; margin-left: -960px;">
    <div class="company clear-fix">
        <div class="Ttitle">中心简介<span>About</span>
            <div class="Tmore"><a href="/zhongxinb/">查看更多 +</a></div>
        </div><!-- end Ttitle-->
        <div class="companyCon">
            <div class="companyPic">
            </div>
            <div class="companyConFont">
                <span>蓬江区爱儿健康管理服务中心</span>
                <p>蓬江区爱儿健康管理服务中心是专门为自闭症、多动症、语言发育迟缓等成长问题儿童及家长提供评估、训练、教育、咨询、指导的专业服务机构。本中心拥有十多年自闭症教学经验的老师。中心拥有近700平方训练场地,设有感觉统合室、个训室、游戏文化干预室、小组课室、个人工作系统室。</p><p>中心依据每位儿童的综合评估情况制定个性化训练方案,采用目前国际最有效的教学方法,结构化教学(TEACCH)、应用行为分析法(ABA)、人际关系发展(RDI)、音乐治疗、游戏文化干预(PCI)等方法,为有需要的儿童及家庭提供多种不同模式的训练与指导。中心整合美国、日本先进有效地自闭症儿童干预模式...</p>            </div><!-- end companyConFont -->
        </div><!-- end companyCon -->
    </div><!-- end company -->
</div>

<div class="section proBg">
    <div class="inProBd">
        <div class="Ttitle2">中心环境<span>TEACHING STYLE</span>
            <div class="Tmore2"><a href="/zhongxin/">查看更多 +</a></div>
        </div><!-- end Ttitle-->
    </div><!-- end Ttitle-->
    <div class="proListPic">
        <ul class="clear-fix">
                        <li>
                <div class="pic" style="width:238px;height:178px;position:relative;display:block;  background-color: #eee;">
                    <img src="/Public/uploads/20241022/6716fea1ae2471.09372860.jpg" alt="中心环境" style="max-width:236px;max-height:176px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" class="PicAuto"></div>
                <div class="title">中心环境</div>
                <div class="intro">
                    <a href="/zhongxin/832/" title="中心环境">
                        <span>中心环境</span>
                        <p></p>
                    </a>
                </div>
            </li>
                        <li>
                <div class="pic" style="width:238px;height:178px;position:relative;display:block;  background-color: #eee;">
                    <img src="/Public/uploads/20241022/6716fed3d7b441.69124204.jpg" alt="中心环境" style="max-width:236px;max-height:176px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" class="PicAuto"></div>
                <div class="title">中心环境</div>
                <div class="intro">
                    <a href="/zhongxin/833/" title="中心环境">
                        <span>中心环境</span>
                        <p></p>
                    </a>
                </div>
            </li>
                        <li>
                <div class="pic" style="width:238px;height:178px;position:relative;display:block;  background-color: #eee;">
                    <img src="/Public/uploads/20241022/6717017b1698c4.36116162.jpg" alt="中心环境" style="max-width:236px;max-height:176px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" class="PicAuto"></div>
                <div class="title">中心环境</div>
                <div class="intro">
                    <a href="/zhongxin/837/" title="中心环境">
                        <span>中心环境</span>
                        <p></p>
                    </a>
                </div>
            </li>
                        <li>
                <div class="pic" style="width:238px;height:178px;position:relative;display:block;  background-color: #eee;">
                    <img src="/Public/uploads/20241022/6717015f382821.76181101.jpg" alt="中心环境" style="max-width:236px;max-height:176px;margin:auto;position:absolute;left:0px;right:0px;top:0;bottom:0;height:auto;width:auto;" class="PicAuto"></div>
                <div class="title">中心环境</div>
                <div class="intro">
                    <a href="/zhongxin/836/" title="中心环境">
                        <span>中心环境</span>
                        <p></p>
                    </a>
                </div>
            </li>
                    </ul>
    </div><!-- end proListPic-->
</div><!-- end inProBd-->

</div>
<div class="section">
    <div class="kcBox clear-fix">
        <div class="knowList clear-fix">
            <div class="Ttitle">中心动态<span>News</span>
                <div class="Tmore"><a href="/zhongxinh/">查看更多 +</a></div>
            </div><!-- end Ttitle-->
            <ul class="knowListUl">
                                <li>
                    <a href="/zhongxinkx/841/" title="守护星光,启航未来--2025世界自闭症日“爱儿百万入读关爱计划”">
                    <span>03-21</span>守护星光,启航未来--2025世界自闭症日“爱儿百万入读关爱计划”                    </a>
                </li>
                                <li>
                    <a href="/zhongxinkx/840/" title="自闭症儿童干预训练的意义">
                    <span>03-06</span>自闭症儿童干预训练的意义                    </a>
                </li>
                                <li>
                    <a href="/zhongxinkx/839/" title="怎么判断孩子是否可以上幼儿园了">
                    <span>03-06</span>怎么判断孩子是否可以上幼儿园了                    </a>
                </li>
                                <li>
                    <a href="/zhongxinkx/838/" title="升级环境,更好的提供自闭症、语言康复">
                    <span>11-04</span>升级环境,更好的提供自闭症、语言康复                    </a>
                </li>
                            </ul><!-- end knowListUl-->
        </div><!-- end knowList-->
                <div class="contact">
            <!-- <div class="numTel">联系我们0750-3186680</div> -->
            <div class="Ttitle">联系我们<span>Contact</span>
                <div class="Tmore"><a href="/lianxiwo/">查看更多 +</a></div>
            </div>
            <div style="color: #666666;">
            <p style="text-indent: 0em; white-space: normal; line-height: normal;"><span style="font-size: 16px;">蓬江区爱儿健康管理服务中心</span></p><p style="text-indent: 0em; white-space: normal; line-height: normal;"><span style="font-size: 16px;">联系人:张主任</span></p><p style="text-indent: 0em; white-space: normal; line-height: normal;"><span style="font-size: 16px;">手机:18923075680&nbsp; &nbsp;&nbsp;</span></p><p style="text-indent: 0em; white-space: normal; line-height: normal;"><span style="font-size: 16px;">电话:0750-3186680</span></p><p style="text-indent: 0em; white-space: normal; line-height: normal;"><span style="font-size: 16px;">微信号:aier138</span></p><p style="text-indent: 0em; white-space: normal; line-height: normal;"><span style="font-size: 16px;">地址:江门市蓬江区江边里160号101室</span></p><p><br/></p>            </div>
            <!--<div class="conMore"><a href="/contact/">更多 +</a></div>-->
        </div><!-- end contact-->
            </div><!-- end kcBox-->
</div>
<div class="footer">
    <div class="linkBox">
        <div class="link">
            <div class="linkTitle">友情链接</div>
            <div class="link_list">
                                <a href="http://www.aiekf.com/" title="儿童轻微自闭" target="_blank">儿童轻微自闭</a>
                                <a href="http://www.aiekf.com/" title="自闭症少儿中心" target="_blank">自闭症少儿中心</a>
                                <a href="http://www.aiekf.com" title="江门孤独症" target="_blank">江门孤独症</a>
                                <a href="http://www.aiekf.com/" title="江门自闭症" target="_blank">江门自闭症</a>
                                <a href="http://www.aiekf.com/" title="小孩自闭症" target="_blank">小孩自闭症</a>
                                <a href="http://www.aiekf.com/" title="蓬江区孤独症" target="_blank">蓬江区孤独症</a>
                                <a href="http://www.aiekf.com/" title="蓬江区自闭症" target="_blank">蓬江区自闭症</a>
                            </div><!-- end link_list-->
            <div class="clear"></div>
        </div><!-- end link-->
    </div><!-- end linkBox-->
   <!--  <div class="btnav">
       <div class="btnavlist">
           <a href="/">网站首页</a> 
                      | <a href="/zhongxinb/">中心简介</a>
                      | <a href="/kechengl/">教学特色</a>
                      | <a href="/zhongxinh/">中心动态</a>
                      | <a href="/renshizi/">认识自闭症</a>
                      | <a href="/huodongl/">活动掠影</a>
                      | <a href="/zhongxin/">中心环境</a>
                      | <a href="/lianxiwo/">联系我们</a>
                  </div>  end btnavlist
   </div>end btnav -->
    <div class="copyrightnr">
        <p><span style="font-family: 微软雅黑,;" microsoft=""> </span> </p><p class="MsoNormal">&lt;span style=&quot;color: rgb(153, 153, 153); font-size: 14px;&quot; font-size:14px;&quot;=&quot;&quot;&gt;</p><p><span style="color: rgb(204, 204, 204); font-family: Microsoft YaHei; font-size: 14px; font-weight: normal;"><span style="color: rgb(204, 204, 204); font-family: Microsoft YaHei; font-size: 14px;"> </span></span> </p><p><span style="color: rgb(204, 204, 204);"> </span> </p><p class="MsoNormal" style="line-height: 150%;"><span style="color: rgb(255, 255, 255);">蓬江区爱儿健康管理服务中心 </span><span style="color: rgb(255, 255, 255);"> 张老师:0750-3186680 手机:18923075680 地址:江门市蓬江区江边里160号101室&nbsp; &nbsp;技术支持:</span><span style="color: rgb(204, 204, 204);"><a href="http://www.sharebd.cn/" target="_blank"><span style="color: rgb(255, 255, 255);">希百信息</span></a><span style="color: rgb(255, 255, 255);"> </span><span style="color: rgb(255, 255, 255); white-space: normal;">备案编号:</span><a style="white-space: normal;" href="https://beian.miit.gov.cn" target="_blank"><span style="color: rgb(255, 255, 255);">粤ICP备20041384号</span></a><span style="color: rgb(255, 255, 255); white-space: normal;"> </span><span style="color: rgb(255, 255, 255);"></span></span> </p><p><br/></p>    </div><!-- end copyrightnr-->
    <!--    <div class="footOne">
            <ul class="share">
                <li><a href="tencent://message/?uin=23423434&Menu=yes"  class="list qq" target="blank">在线咨询</a></li>
                <li class="shareDiv"><a href="javascript:void(0)" class="list qq2">分享网站</a>
                    <div class="shareList">
                        <div class="bdsharebuttonbox"><a href="#" class="bds_more" data-cmd="more"></a><a href="#" class="bds_qzone" data-cmd="qzone" title="分享到QQ空间"></a><a href="#" class="bds_tsina" data-cmd="tsina" title="分享到新浪微博"></a><a href="#" class="bds_tqq" data-cmd="tqq" title="分享到腾讯微博"></a><a href="#" class="bds_renren" data-cmd="renren" title="分享到人人网"></a><a href="#" class="bds_weixin" data-cmd="weixin" title="分享到微信"></a></div>
                    </div>
                </li>
            </ul>
            <div class="site">网站地图(<a href='/plug/rss.html'>RSS订阅</a>)</div>
        </div>&lt;!&ndash; end footOne&ndash;&gt;-->
    <audio loop="loop" autoplay="autoplay">
        <source src="aierjkgl" type="audio/mp3">
          <source src="aierjkgl" type="audio/ogg">
            <source src="aierjkgl" type="audio/mp4">
              <!-- If no support at all. --><object height="0" width="0" classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95"><param name="AutoStart" value="1" /><param name="FileName" value="aierjkgl" /></object></audio>  
</div><!-- end footer-->
<!-- 浮动工具 -->
<div class="c-tools">
    <ul>
        <li class="tel-ico"><span>0750-3186680</span></li>
        <li class="ewm-ico"><span class="ewmPic"><img src="/Public/uploads/20230221/63f429b80c4574.23282543.jpg"></span></li>
        
        <li class="top-ico"></li>
    </ul>
</div>
<!-- 浮动工具 -->
<script src="/Public/Web/js/jquery.superslide.2.1.2.js"></script>
<script src="/Public/Web/js/common.js"></script>
</body>
</html>                               

Alan adının whois bilgisi

Domain Name: AIEKF.COM
Registry Domain ID: 2445204941_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.55hl.com
Registrar URL: http://www.55hl.com
Updated Date: 2024-10-21T01:45:33Z
Creation Date: 2019-10-19T00:49:36Z
Registry Expiry Date: 2025-10-19T00:49:36Z
Registrar: Jiangsu Bangning Science & technology Co. Ltd.
Registrar IANA ID: 1469
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +86.02586883421
Domain Status: ok https://icann.org/epp#ok
Name Server: NS1.BDYDNS.CN
Name Server: NS2.BDYDNS.CN
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-23T21:56:33Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass