CINXE.COM

Ajax中数据传递的另一种模式:JSON

<!DOCTYPE HTML> <html> <head> <meta charset="gbk" /> <title>Ajax中数据传递的另一种模式:JSON</title> <meta name="description" content="Ajax是“异步&#106avascript和XML”的缩写已经众所周知,然而虽然XML是看上去的重要 组成部分,它却不是必须的。今天看到一篇国外Blog提到JSON的说法,全称是&#106avascript Object Notation,意思是直接使用Ajax对象......T086.com"> <link rel="alternate" media="only screen and(max-width: 640px)" href="http://m.t086.com/article/3086" > <link href="/css/hx.css" rel="stylesheet" type="text/css"> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6954704791417392" crossorigin="anonymous"></script> </head> <body> <div id="wrap"> <div id="top_bar"> <a href="/" target="_blank">T086学习网</a> | <a href="/article/">站长学院</a> | <a href="http://www.t086.com/code/" target="_blank">技术文档</a> | <a href="http://chengyu.t086.com/" target="_blank">成语</a> | <a href="http://xhy.t086.com/" target="_blank">歇后语</a> <!--| <a href="http://diguo.b086.com/" target="_blank">帝国时代</a> | <a href="http://code.9enjoy.com/" target="_blank">代码收藏</a>--> | <a href="https://ip.t086.com/" target="_blank">IP地址查询</a> | <a href="https://shengri.t086.com/" target="_blank">生日密码</a> | <a href='https://shengri.t086.com/flower/' target="_blank">生日花语</a> | <a href="/tools/csstidy/" target="_blank">CSS压缩</a> | <a href="/zidian/" target="_blank">在线字典</a> <!--| <a href="/comment" target="_blank">用户评论</a> | <a href="http://tool.cncn.com/" target="_blank">欣欣百宝箱</a>--> </div> <div class="menuskin" id="popmenu" onmouseover="clearhidemenu()" style="Z-INDEX: 100" onmouseout="dynamichide(event)"></div> <div class="menu_title"> <a href="/">首页</a> |&nbsp;<a href="/article/">文章首页</a> |&nbsp;<a href="/class/it" onmouseover="showmenu(event,'','menu1')">IT资讯</a> |&nbsp;<a href="/class/wangzhan_yunying" onmouseover="showmenu(event,'','menu5')">网站运营</a> |&nbsp;<a href="/class/webdesign" onmouseover="showmenu(event,'','menu2')">网站制作</a> |&nbsp;<a href="/class/program" onmouseover="showmenu(event,'','menu3')">网络编程</a> |&nbsp;<a href="/class/study" onmouseover="showmenu(event,'','menu4')">学习认证</a> |&nbsp;<a href="/class/good">精彩好文</a> |&nbsp;<a href="/class/game">游戏攻略</a> |&nbsp;<a href="/class/others">其它精选</a> |&nbsp;<a href="/article/new">最新文章</a> |&nbsp;<a href="/article/hot">热门文章</a> |&nbsp;<a href="/article/elite">推荐文章</a> |&nbsp;<a href="/zidian/">汉语字典</a> </div> <div id="a1"> </div> <script src="/js/common.js"></script> <script src="/js/main.js"></script> <div id="place"> <div id="place1">您的位置:<a href="/">IT学习者</a> > <a href='/article/'>文章大全</a> > <a href="/class/program">网络编程</a> > <a href="/class/ajax">ajax</a> > <a href="/article/3086">Ajax中数据传递的另一种模式:JSON</a></div> <div id="place2"><form action="/so.php" target="_blank"> <input type="text" name="q" value="" maxlength="50" size="18" class="so_q"> <input name="cl" value="2" type="hidden"> <input type="submit" name="Submit" value="站内搜索"></form></div> </div> <div id="main"> <div id="con"> <div id="show"> <h1>Ajax中数据传递的另一种模式:JSON</h1> <div id="articleinfo">【 来源:<a href="http://www.x2blog.cn/">笑笑设计</a>作者:supNate 更新时间:2006-05-08 | 字体:<a href="javascript:ContentSize(16)">大</a> <a href="javascript:ContentSize(14)">中</a> <a href="javascript:ContentSize(12)">小</a>】</div> <div id="summary">[<strong>导读</strong>]Ajax是“异步&#106avascript和XML”的缩写已经众所周知,然而虽然XML是看上去的重要 组成部分,它却不是必须的。今天看到一篇国外Blog提到JSON的说法,全称是&#106avascript Object Notation,意思是直接使用Ajax对象...</div> <div class="c" style="clear:both;"> </div> <div id="articlecontent"> Ajax是“异步&#106avascript和XML”的缩写已经众所周知,然而虽然XML是看上去的重要 组成部分,它却不是必须的。今天看到一篇国外Blog提到JSON的说法,全称是&#106avascript Object Notation,意思是直接使用Ajax对象来传递信息,可以读作“Jason”。在这里我就简单的介绍一下,JSON概念很简单,就是服务器直接生成&#106avascript语句,客户端获取后直接用eval方法来获得这个对象,这样就可以省去解析XML的性能损失。比如传递Blog评论的示例:<BR>使用XML表示:<BR> <DIV class="codeArea xml"> <DIV style="COLOR: #000000"><FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>comments</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>comment</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>id</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>1</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>id</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>author</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>someone1</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>author</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>url</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>http</FONT>:<FONT color=#0000ff>//</FONT><FONT color=#a52a2a>someone1</FONT>.<FONT color=#a52a2a>x2design</FONT>.<FONT color=#a52a2a>net</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>url</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>content</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>hello</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>content</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;<FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>comment</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>comment</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>id</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>2</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>id</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>author</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>someone2</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>author</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>url</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>http</FONT>:<FONT color=#0000ff>//</FONT><FONT color=#a52a2a>someone2</FONT>.<FONT color=#a52a2a>x2design</FONT>.<FONT color=#a52a2a>net</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>url</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>content</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>someone1</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>content</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;<FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>comment</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>comment</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>id</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>3</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>id</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>author</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>someone3</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>author</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>url</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>http</FONT>:<FONT color=#0000ff>//</FONT><FONT color=#a52a2a>someone3</FONT>.<FONT color=#a52a2a>x2design</FONT>.<FONT color=#a52a2a>net</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>url</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;&nbsp;<FONT color=#0000ff>&lt;</FONT><FONT color=#a52a2a>content</FONT><FONT color=#0000ff>&gt;</FONT><FONT color=#a52a2a>hello</FONT><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>content</FONT><FONT color=#0000ff>&gt;</FONT><BR>&nbsp;<FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>comment</FONT><FONT color=#0000ff>&gt;</FONT><BR><FONT color=#0000ff>&lt;/</FONT><FONT color=#a52a2a>comments</FONT><FONT color=#0000ff>&gt;</FONT><BR></DIV></DIV><BR>使用JSON:<BR> <DIV class="codeArea js"> <DIV style="COLOR: #000000"><FONT color=#000000>{</FONT><FONT color=#000000>comments</FONT><FONT color=#000000>:[</FONT><BR>&nbsp;<FONT color=#000000>{</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>id</FONT><FONT color=#000000>:</FONT><FONT color=#000000>1</FONT><FONT color=#000000>,</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>author</FONT><FONT color=#000000>:</FONT><FONT color=#ff00ff>"someone1"</FONT><FONT color=#000000>,</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>url</FONT><FONT color=#000000>:</FONT><FONT color=#ff00ff>"http://someone1.x2design.net"</FONT><FONT color=#000000>,</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>content</FONT><FONT color=#000000>:</FONT><FONT color=#ff00ff>"hello"</FONT><BR>&nbsp;<FONT color=#000000>},</FONT><BR>&nbsp;<FONT color=#000000>{</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>id</FONT><FONT color=#000000>:</FONT><FONT color=#000000>2</FONT><FONT color=#000000>,</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>author</FONT><FONT color=#000000>:</FONT><FONT color=#ff00ff>"someone2"</FONT><FONT color=#000000>,</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>url</FONT><FONT color=#000000>:</FONT><FONT color=#ff00ff>"http://someone2.x2design.net"</FONT><FONT color=#000000>,</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>content</FONT><FONT color=#000000>:</FONT><FONT color=#ff00ff>"hello"</FONT><BR>&nbsp;<FONT color=#000000>},</FONT><BR>&nbsp;<FONT color=#000000>{</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>id</FONT><FONT color=#000000>:</FONT><FONT color=#000000>3</FONT><FONT color=#000000>,</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>author</FONT><FONT color=#000000>:</FONT><FONT color=#ff00ff>"someone3"</FONT><FONT color=#000000>,</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>url</FONT><FONT color=#000000>:</FONT><FONT color=#ff00ff>"http://someone3.x2design.net"</FONT><FONT color=#000000>,</FONT><BR>&nbsp;&nbsp;<FONT color=#000000>content</FONT><FONT color=#000000>:</FONT><FONT color=#ff00ff>"hello"</FONT><BR>&nbsp;<FONT color=#000000>}</FONT><BR><FONT color=#000000>]};</FONT><BR></DIV></DIV><BR>很容易发现,使用JSON不仅减少了解析XML解析带来的性能问题和兼容性问题,而且对于&#106avascript来说非常容易使用,可以方便的通过遍历数组以及访问对象属性来获取数据,其可读性也不错,基本具备了结构化数据的性质。不得不说是一个很好的办法,而且事实上google maps就没有采用XML传递数据,而是采用了JSON方案。<BR><BR>JSON的另外一个优势是跨域可行性,例如你在www.xxx.com的网页里使用&lt;script type="text/&#106avascript" src="http://www.yyy.com/some.js"&gt;&lt;/script&gt;是完全可行的,这就意味着你可以跨域传递信息。而使用XMLHttpRequest却获取不了跨域的信息,这是&#106avascript内部的安全性质所限制的。<BR><BR>JSON看上去很美,是不是就能完全取代XML呢?事实并非如此,而原因就在于XML的优势:通用性。要使服务器端产生语法合格的&#106avascript代码并不是很容易做到的,这主要发生在比较庞大的系统,服务器端和客户端有不同的开发人员。它们必须协商对象的格式,这很容易造成错误。<BR><BR>无论如何,JSON是一个诱人的技术,准备在X2Blog做一个大量的试用。希望届时可以获取大的性能提高。 <div class="cutpage"></div> </div> <div id="share"> <div style="float:left;width:120px;"><wb:like type="number"></wb:like></div> <div class="share"> <div id="bdshare" class="bdshare_t bds_tools get-codes-bdshare"> <span class="bds_more">分享到:</span> <a class="bds_qzone">QQ空间</a> <a class="bds_tsina">新浪微博</a> <a class="bds_tqq">腾讯微博</a> <a class="bds_renren">人人网</a> <a class="bds_baidu">百度搜藏</a> <a class="bds_tieba">贴吧</a> </div> </div> </div> <div id="articlereadme"> <ul> <li>转载请注明来源:<a href="http://www.t086.com/">IT学习网</a> 网址:http://www.t086.com/ <a href="javascript:RecToClipBoard()" title="点击复制本页地址到剪贴版,直接在MSN/QQ上粘贴即可" style="font-weight:bold;color:#F00;height:20px;line-height:20px;">向您的朋友推荐此文章</a> </li> <li>特别声明: 本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系我们,我们会尽快予以更正。</li> </ul> </div> <div id="comment"> </div> <div id="articleprenext"> <ul> <li>上一篇:<a href="/article/3085" target="_self" title="认识JavaScript数组对象的length属性">认识JavaScript数组对象的length属性</a></li><li>下一篇:<a href="/article/3087" target="_self" title="中搜CEO陈沛称百度所代表的二代搜索已过时">中搜CEO陈沛称百度所代表的二代搜索已过时</a></li><li><a href="/archive/200605">查看2006年05月的文章归档</a></li> </ul> </div> </div> <div class="main_t4"><a href="/article/3086/relate">相关文章</a> ( <a href="/tags/ajax">ajax</a>&nbsp; <a href="/tags/json">json</a>&nbsp; )</div> <div class="main_c4"><li><a href="/article/4844">利用Ajax实现长连接(模拟推送)</a></li><li><a href="/article/4709">如何对json代码进行格式化显示</a></li><li><a href="/article/4066">在PHP使用json_encode</a></li><li><a href="/article/3350">70个流行的AJAX应用的演示和源码下载</a></li><li><a href="/article/3249">ajax代理程序自动判断字符编码</a></li><li><a href="/article/3193">AJAX在Post中文的时候解决乱码的方法</a></li><li><a href="/article/3161">如何成为AJAX高手</a></li><li><a href="/article/3139">Xajax中文手册(第一版)</a></li><li><a href="/article/3134">AJAX的七宗罪</a></li><li><a href="/article/3109">掌握&nbsp;Ajax,第&nbsp;1&nbsp;部分:&nbsp;Ajax&nbsp;简介</a></li><li><a href="/article/3108">基于Ajax的应用程序架构汇总</a></li><li>了解这些字:<a href="/zidian/中" target="_blank">中</a> <a href="/zidian/数" target="_blank">数</a> <a href="/zidian/据" target="_blank">据</a> <a href="/zidian/传" target="_blank">传</a> <a href="/zidian/递" target="_blank">递</a> <a href="/zidian/的" target="_blank">的</a> <a href="/zidian/另" target="_blank">另</a> <a href="/zidian/一" target="_blank">一</a> <a href="/zidian/种" target="_blank">种</a> <a href="/zidian/慕" target="_blank">慕</a> </li></div> <div> </div> <div class="search" id="a2"></div> <div class="plus"> </div> </div><!--con--> <div id="side"> <div class="left_box" style="border-top:0px"> <div class="left_title"><a href="/article/elite">最 新 推 荐</a></div> <div class="left_main"><ul><li>·<a href="/article/5225">张小龙2016年领导力大会末内部分享:警惕KPI和流程</a></li><li>·<a href="/article/5206">caoz谈能力成长系列 - 取舍之道</a></li><li>·<a href="/article/5180">解读《百度网页质量白皮书》潜台词</a></li><li>·<a href="/article/5176">创业像开车,而不是发火箭</a></li><li>·<a href="/article/5161">雷霆战机装备搭配攻略_雷霆战机装备大全</a></li><li>·<a href="/article/5158">能花钱的,就不要花时间</a></li><li>·<a href="/article/5145">时间管理:吃掉三只青蛙吧!</a></li><li>·<a href="/article/5040">成语玩命猜ipad,iphone版全部答案</a></li><li>·<a href="/article/5035">疯狂猜图答案</a></li><li>·<a href="/article/5018">caoz:数据分析这点事</a></li></ul></div> </div> <div class="left_box"> <div class="left_title"><a href="/article/hot_month">本月热门</a></div> <div class="left_main"><ul><li>·<a href="/article/5051">苹果电脑MACbook Air快捷键大全</a></li><li>·<a href="/article/3723">成语中的颜色</a></li><li>·<a href="/article/5001">所有浏览器的userAgent为何都带Mozilla</a></li><li>·<a href="/article/4138">比YOUTUBE更好的五个国外视频分享网站</a></li><li>·<a href="/article/5090">如何判断IP地址是A类B类还是C类</a></li><li>·<a href="/article/5138">nslookup命令详解</a></li><li>·<a href="/article/3582">Smarty程序应用范例:留言簿(Guestbook)</a></li><li>·<a href="/article/4837">20款免费的在线PDF转换工具</a></li><li>·<a href="/article/2127">关于蛇的成语</a></li><li>·<a href="/article/1">Google搜索从入门到精通v4.0</a></li></ul></div> </div> <div class="left_box"> <div class="left_title"><a href="/article/hot_week">本周热门</a></div> <div class="left_main"><ul><li>·<a href="/article/3723">成语中的颜色</a></li><li>·<a href="/article/5051">苹果电脑MACbook Air快捷键大全</a></li><li>·<a href="/article/2516">什么是Web&nbsp;2.0</a></li><li>·<a href="/article/4110">php.ini&nbsp;文件配置详解</a></li><li>·<a href="/article/5001">所有浏览器的userAgent为何都带Mozilla</a></li><li>·<a href="/article/4240">百度搜索技巧</a></li><li>·<a href="/article/3427">Windows系统“无法打开”故障解决方法</a></li><li>·<a href="/article/2074">阿里巴巴雅虎收购案发布会实录</a></li><li>·<a href="/article/2056">简明&nbsp;HTML&nbsp;CSS&nbsp;开发规范</a></li><li>·<a href="/article/4886">怎样练习一万小时</a></li></ul></div> </div><!--box--> <div class="left_box"> <div class="left_title"><a href="/article/new">最新文章</a></div> <div class="left_main"><ul><li>·<a href="/article/5254">易方达基金经理张坤谈净利润到股东回报</a></li><li>·<a href="/article/5253">于洋对天弘甄选食品饮料2020四季度的投资策略和运作分析</a></li><li>·<a href="/article/5252">关于调整上证50、科创50等上证指数样本的公告</a></li><li>·<a href="/article/5251">上证50是哪些股票_上证50权重最新排名</a></li><li>·<a href="/article/5250">沪深300、上证50和中证500等指数2019年第二次定期调整样本股</a></li><li>·<a href="/article/5249">沪深300价值/成长指数编制方案调整,中国平安权重下降</a></li><li>·<a href="/article/5248">中证指数调整上证50等指数样本股</a></li><li>·<a href="/article/5247">中证指数调整中证红利指数样本股</a></li><li>·<a href="/article/5246">中证指数调整中证100指数样本股</a></li><li>·<a href="/article/5245">中证指数调整沪深300指数样本股</a></li></ul></div> </div> <div id="content_a"></div> </div> </div> <div class="clear"></div> <script type="text/javascript"> document.body.oncopy=function(){ event.returnValue=false; var t=document.selection.createRange().text; t += "\r\n本文转摘自『IT学习者』" + document.location.href; clipboardData.setData('Text',t); } </script> <script type="text/javascript" src="/js/show.js"></script> <div class="menu_popup" id="menu1"> <div class="menuitems"><a href="http://www.t086.com/class/it_news">IT业界资讯</a><br> <a href="http://www.t086.com/class/it_comment">IT业界评论</a><br> <a href="http://www.t086.com/class/it_career">IT人生</a><br> <a href="http://www.t086.com/class/it_elite">IT人物</a> </div></div> <div class="menu_popup" id="menu2"> <div class="menuitems"><a href="http://www.t086.com/class/web_news">网站制作相关</a><br> <a href="http://www.t086.com/class/html_css">HTML&CSS</a><br> <a href="http://www.t086.com/class/photoshop">Photoshop</a><br> <a href="http://www.t086.com/class/micromedia">网页三剑客</a><br> <a href="http://www.t086.com/class/server">服务器</a> </div></div> <div class="menu_popup" id="menu3"> <div class="menuitems"><a href="http://www.t086.com/class/asp">ASP技术</a><br> <a href="http://www.t086.com/class/php">PHP</a><br> <a href="http://www.t086.com/class/java">Java/JSP</a><br> <a href="http://www.t086.com/class/xml">XML学习</a><br> <a href="http://www.t086.com/class/asp.net">ASP.NET</a><br> <a href="http://www.t086.com/class/vb">VB学习</a><br> <a href="http://www.t086.com/class/database">数据库开发</a><br> <a href="http://www.t086.com/class/ajax">AJAX</a> </div></div> <div class="menu_popup" id="menu4"> <div class="menuitems"><a href="http://www.t086.com/class/computer">电脑教室</a><br> <a href="http://www.t086.com/class/network_security">网络安全</a><br> <a href="http://www.t086.com/class/office">办公一族</a><br> <a href="http://www.t086.com/class/jincheng">进程知识库</a><br> <a href="http://www.t086.com/class/job">求职招聘</a><br> <a href="http://www.t086.com/class/management">管理技巧</a><br> <a href="http://www.t086.com/class/meiguo-zhuji">美国主机</a><br> <a href="http://www.t086.com/class/english">英语学习</a> </div></div> <div class="menu_popup" id="menu5"> <div class="menuitems"><a href="http://www.t086.com/class/seo">搜索引擎优化</a><br> <a href="http://www.t086.com/class/zhanzhang_zhuanqian">站长赚钱</a><br> <a href="http://www.t086.com/class/tuiguang_chaozuo">推广炒作</a><br> <a href="http://www.t086.com/class/lianmeng">联盟动态</a> </div></div> <div id="bottom"> <div id="bdshare" class="bdshare_t bds_tools_32 get-codes-bdshare"> <a class="bds_qzone"></a> <a class="bds_tsina"></a> <a class="bds_tqq"></a> <a class="bds_renren"></a> <a class="bds_baidu"></a> <a class="bds_tieba"></a> <span class="bds_more">更多</span> </div> <div> <a href="http://www.9enjoy.com/guestbook.php" target="_blank">留言建议</a> |&nbsp;<a href="http://aspcheck.9enjoy.com/" target="_blank">ASP探针</a> |&nbsp;<a href="http://www.9enjoy.com/phpcheck/" target="_blank">PHP探针</a> |&nbsp;<a href="http://www.9enjoy.com" target="_blank">站长Enjoy的Blog</a> </div> <div>&copy; 2017 <a href="http://www.t086.com/">T086学习网</a> - T086.com(原itlearner.com) <script id="bdshare_js" data="type=tools&amp;uid=630456" ></script> <script id="bdshell_js"></script> <script>document.getElementById("bdshell_js").src = "http://bdimg.share.baidu.com/static/js/shell_v2.js?cdnversion=" + Math.ceil(new Date()/3600000)</script> <script src="/js/tj.js"></script> </div> </div> </div></body> </html><div id="runtime">RunTime:10.72ms QueryTime:7</div>

Pages: 1 2 3 4 5 6 7 8 9 10