|
|

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>手机号码归属地查询</title>
<link href="./images/style.css" rel="stylesheet" type="text/css" />
<script language="JavaScript" src="./images/common.js"></script>
<SCRIPT type="text/javascript">
<!--
var xmlHttp;
function creatXMLHttpRequest() {
if(window.ActiveXObject) {
xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
} else if(window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}
}
function startRequest() {
var queryString;
var mobile = document.getElementById('mobile').value;
queryString = "mobile=" + mobile +"&action=mobile";
creatXMLHttpRequest();
xmlHttp.open("POST","?action=mobile","true");
xmlHttp.onreadystatechange = handleStateChange;
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded;");
xmlHttp.send(queryString);
}
function handleStateChange() {
if(xmlHttp.readyState == 1) {
document.getElementById('result').style.cssText = "";
document.getElementById('result').innerHTML = "Loading...";
}
if(xmlHttp.readyState == 4) {
if(xmlHttp.status == 200) {
document.getElementById('result').style.cssText = "";
var allcon = xmlHttp.responseText;
document.getElementById('result').innerHTML = allcon;
}
}
}
//-->
</SCRIPT>
</head>
<body>
<TABLE cellSpacing="0" cellPadding="0" width="100%" bgColor="#e5e5e5" border="0" align="center" style="margin-bottom: 10px;">
<TBODY>
<TR>
<TD style="PADDING-LEFT: 20px" width="5%">
<a href="./"><IMG src="./images/top_logo.gif" alt="无忧 - 5uIE.Com" border="0" align="absMiddle"></a>
</TD>
<TD style="PADDING-TOP: 2px" noWrap align="left" width="50%">
<a href="./?f=main" title="实用查询首页">首页</a>
|
<a href="./js.php" title="天气、闹钟等网页调用代码">调用</a>
|
<a href="./?f=set" title="个性设置">设置</a>
|
<a href="http://5uie.com/" title="无忧贴吧论坛">贴吧</a>
|
<a href="./links.php" title="友情链接">链接</a>
|
<a href="./" title="集成搜索">搜索</a>
</TD>
<TD style="PADDING-RIGHT: 20px; PADDING-TOP: 2px" noWrap align="right" width="45%"><script src="./js/weather.php"></script></TD>
</TR>
<TR><TD bgColor="#b4b4b4" colSpan="3" height="1"></TD></TR>
</TBODY>
</TABLE>
<div>
<a href="./gongjiao.php" title="全国公交及地铁线路查询">公交地铁</a>
<a href="./weather.php" title="各地天气查询">天气</a>
<a href="./translate.php" title="最快速的英汉互译词典,支持中文成语翻译">英汉词典</a>
<a href="./ip.php" title="IP归属地查询">IP归属</a>
<a href="./mobile.php" title="手机号码所在地区强力查询">手机号码</a>
<a href="./zip.php" title="国际、国内邮编及区号查询">邮编区号</a>
<a href="./identity.php" title="中国大陆地区居民身份证所在地查询">身份证</a>
<a href="./train.php" title="国内火车车次查询">火车车次</a>
<a href="./gb-big5_ff.php" title="简体中文/繁体中文转换工具">简繁互换</a>
<a href="./pinyin.php" title="汉字转拼音">汉字转拼音</a>
<br><br>
<a href="./domain.php" title="域名是否注册查询">域名注册</a>
<a href="./whois.php" title="域名注册信息查询">WhoIS</a>
<a href="./pr.php" title="Google PageRank">PR</a>
<a href="./alexa.php" title="网站Alexa全球排名查询">Alexa</a>
<a href="./seo.php" title="搜索引擎收录情况及网站外部链接查询">SEO</a>
<a href="./spider.php" title="页面 关键字/关键词 密度 查询">页面分析</a>
<a href="./name.php" title="分析你的成分">姓名成分</a>
<a href="./email.php" title="免费在线发送邮件">E-Mail</a>
<a href="./picture.php" title="在线制作个性邮箱地址图标">图标制作</a>
<a href="./qq.php" title="查询QQ在线状态(在线/隐身/离线)">QQ状态</a>
<a href="http://5uie.com/list.php?f=1" title="如有疑问,请来此提出交流。" target="_blank" style="color:red">网友问题反馈</a>
</div><form onSubmit="button.click();return false;">
<div>手机号码归属地</div>
<div>
请输入手机号码前七位即可:
<input name="mobile" id="mobile" type="text" size="30" maxlength="7" />
<input type="button" name="button" value="归属地查询" onclick="startRequest();" />
</div>
<div id="result" style="display:none"></div>
</form>
<center>
Copyright © 2006 <b>5uIE.Com</b> All Rights Reserved.
<font color="#3366cc">
粤ICP备05000908号 <script src='http://s67.cnzz.com/stat.php?id=258046&web_id=258046' language='JavaScript' charset='gb2312'></script></font>
</center></body>
</html> |
|