[JavaScript] document对象详解

jackxiang 2007-9-3 09:44 | |

注:页面上元素name属性和JavaScript引用的名称必须一致包括大小写

否则会提示你一个错误信息 "引用的元素为空或者不是对象"

---------------------------------------------------------------------

对象属性

document.title //设置文档标题等价于HTML的标签<br/><br/>document.bgColor //设置页面背景色<br/><br/>document.fgColor //设置前景色(文本颜色)<br/><br/>document.linkColor //未点击过的链接颜色<br/><br/>document.alinkColor //激活链接(焦点在此链接上)的颜色<br/><br/>document.vlinkColor //已点击过的链接颜色<br/><br/>document.URL //设置URL属性从而在同一窗口打开另一网页<br/><br/>document.fileCreatedDate //文件建立日期,只读属性<br/><br/>document.fileModifiedDate //文件修改日期,只读属性<br/><br/>document.fileSize //文件大小,只读属性<br/><br/>document.cookie //设置和读出cookie<br/><br/>document.charset //设置字符集 简体中文:gb2312<br/><br/>---------------------------------------------------------------------<br/><br/>对象方法<br/><br/>document.write() //动态向页面写入内容<br/><br/>document.createElement(Tag) //创建一个html标签对象<br/><br/>document.getElementById(ID) //获得指定ID值的对象<br/><br/>document.getElementsByName(Name) //获得指定Name值的对象<br/><br/>---------------------------------------------------------------------<br/><br/>images集合(页面中的图象)<br/><br/>a)通过集合引用<br/><br/>document.images //对应页面上的<img>标签<br/><br/>document.images.length //对应页面上<img>标签的个数<br/><br/>document.images[0] //第1个<img>标签 <br/><br/>document.images[i] //第i-1个<img>标签<br/><br/>b)通过nane属性直接引用<br/><br/><img name="oImage"><br/><br/>document.images.oImage //document.images.name属性<br/><br/>c)引用图片的src属性<br/>document.images.oImage.src //document.images.name属性.src<br/><br/>d)创建一个图象<br/><br/>var oImage<br/><br/>oImage = new Image()<br/><br/>document.images.oImage.src="http://ent.omeweb.com/1.jpg同时在页面上建立一个<img>标签与之对应就可以显示<br/><br/><html><br/><br/><img name=oImage><br/><br/><script language="javascript"><br/><br/>var oImage<br/><br/>oImage = new Image()<br/><br/>document.images.oImage.src="http://ent.omeweb.com/1.jpg</script><br/><br/></html><br/><br/>---------------------------------------------------------------------<br/><br/>forms集合(页面中的表单)<br/><br/>a)通过集合引用<br/><br/>document.forms //对应页面上的<form>标签<br/><br/>document.forms.length //对应页面上<form>标签的个数<br/><br/>document.forms[0] //第1个<form>标签<br/><br/>document.forms[i] //第i-1个<form>标签<br/><br/>document.forms[i].length //第i-1个<form>中的控件数<br/><br/>document.forms[i].elements[j] //第i-1个<form>中第j-1个控件<br/><br/>b)通过标签name属性直接引用<br/><br/><form name="Myform"><input name="myctrl"></form><br/><br/>document.Myform.myctrl //document.表单名.控件名<br/><br/>---------------------------------------------------------------------<br/><br/><html><br/><br/><!--Text控件相关Script--><br/><br/><form name="Myform"><br/><br/><input type="text" name="oText"><br/><br/><input type="password" name="oPswd"><br/><br/><form><br/><br/><script language="javascript"><br/><br/>//获取文本密码框的值<br/><br/>document.write(document.Myform.oText.value)<br/><br/>document.write(document.Myform.oPswd.value)<br/><br/></script><br/><br/></html><br/><br/><html><br/><br/><!--Select控件相关Script--><br/><br/><form name="Myform"><br/><br/><select name="oSelect"><br/><br/><option value="1">1</option><br/><br/><option value="2">2</option><br/><br/><option value="3">3</option><br/><br/></select><br/><br/></form><br/><br/><script language="javascript"><br/><br/>//遍历select控件的option项<br/><br/>var length<br/><br/>length=document.Myform.oSelect.length<br/><br/>for(i=0;i<length;i++)<br/><br/>document.write(document.Myform.oSelect[i].value)<br/><br/></script><br/><br/><script language="javascript"><br/><br/>//遍历option项并且判断某个option是否被选中<br/><br/>for(i=0;i<document.Myform.oSelect.length;i++){<br/><br/>if(document.Myform.oSelect[i].selected!=true)<br/><br/>document.write(document.Myform.oSelect[i].value)<br/><br/>else<br/><br/>document.write("<font color=red>"+document.Myform.oSelect[i].value+"</font>") <br/><br/>}<br/><br/></script><br/><br/><script language="javascript"><br/><br/>//根据SelectedIndex打印出选中的option<br/><br/>//(0到document.Myform.oSelect.length-1)<br/><br/>i=document.Myform.oSelect.selectedIndex<br/><br/>document.write(document.Myform.oSelect[i].value)<br/><br/></script><br/><br/><script language="javascript"><br/><br/>//动态增加select控件的option项<br/><br/>var oOption = document.createElement("OPTION");<br/><br/>oOption.text="4";<br/><br/>oOption.value="4";<br/><br/>document.Myform.oSelect.add(oOption);<br/><br/></script><br/><br/><html><br/><br/>---------------------------------------------------------------------<br/><br/><Div id="oDiv">Text</Div><br/><br/>document.all.oDiv //引用图层oDiv<br/><br/>document.all.oDiv.style <br/><br/>document.all.oDiv.style.display="" //图层设置为可视<br/><br/>document.all.oDiv.style.display="none" //图层设置为隐藏<br/><br/>/*document.all表示document中所有对象的集合<br/><br/>只有ie支持此属性,因此也用来判断浏览器的种类*/<br/><br/>---------------------------------------------------------------------<br/><br/>在IE地址栏里面输入: <br/><br/>javascript:alert(document.documentElement.outerHTML)查看源文件<br/><p><strong>作者:<a href="user/1/">jackxiang</a>@<a href="https://jackxiang.com">向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除</a><br />地址:<a href="https://jackxiang.com/post/656/">https://jackxiang.com/post/656/</a><br /><font color=red>版权所有。转载时必须以链接形式注明作者和原始出处及本声明!</font></strong></p> </div> <div class="tags" style="display: none"> </div> </div> <div class="textbox-bottom"><br/>最后编辑: jackxiang 编辑于2007-9-3 10:00</div> <div class="article-top"> <div class="prev-article"><a href="post/655/" title="上一篇 [javascript]判断页面上图片个数。。。"><img src="template/trielegant/images/toolbar_previous.gif" alt='' border='0'/>[javascript]判断页面上图片个数。。。</a></div> <div class="next-article"><a href="post/657/" title="下一篇 [查找文件]freebsd下面find通用"><img src="template/trielegant/images/toolbar_next.gif" alt='' border='0'/>[查找文件]freebsd下面find通用</a></div> </div> <div id="commentWrapper" class="comment-wrapper"> <div class="comment-top">评论列表</div> <a name="topreply"></a> <div id="addnew"></div> <div class="comment-pages"> </div> </div> <!-- commentWrapper end --> <a name="reply"></a> <div id="commentForm"> <form name="visitorinput" id="visitorinput" method="post" action="javascript: ajax_submit('addreply');"> <div class="formbox-comment"> <div class="formbox-comment-title">发表评论</div> <div id="wb_connect"> </div> <div class="formbox-comment-content"> <div class="formbox-comment-input"> <p class="in"><input name="v_replier" id="v_replier" type="text" size="32" class="text" value="" /> 昵称</p> <p class="in"><input name="v_repurl" id="v_repurl" type="text" size="32" class="text" value="" /> 网址</p> <p class="in"><input name="v_repemail" id="v_repemail" type="text" size="32" class="text" value="" /> 电邮</p> <input name="v_password" id="v_password" type="hidden" size="12" class="text" value="" /> </div> <!-- <div id="commentbox-openid" style="padding-bottom:5px"> <strong>您也可用<a href="http://www.openid.net.cn/" target="_blank">OpenID</a>登入:</strong> <br/> <input name="openid_url" id="openid_url" type="text" size="44" class="text" value="" {disable_openurl}/> </div> --> <div class="formbox-comment-tool"> <input name="stat_html" id="stat_html" type="checkbox" value="1" disabled='disabled' /> 打开HTML <input name="stat_ubb" id="stat_ubb" type="checkbox" value="0" onclick="showhidediv('ubbid')"/> 打开UBB <input name="stat_emot" id="stat_emot" type="checkbox" value="1" checked='checked'/> 打开表情<img src="template/trielegant/images/arrows/singledown.gif" alt="" title="表情" style="cursor: pointer;" onclick="showhidediv('emotid')" align="absmiddle" /> <input name="stat_property" id="stat_property" type="checkbox" value="1" onclick="promptreppsw();"/> 隐藏 <input name="stat_rememberme" id="stat_rememberme" type="checkbox" value="1" onclick="quickremember();"/> 记住我 <a href="login.php">[登入]</a> <a href="login.php?job=register" title="注册">[注册]</a> </div> <div id="ubbid" class="formbox-comment-ubb" style="display: none;"><script type="text/javascript" src="editor/ubb/ubbeditor_tiny.js"></script><div style="margin: 4px 0px 4px 0px;"><img src="editor/ubb/images/bar.gif" alt=''/>  <a href="javascript: bold();"><img border='0' title="粗体" src="editor/ubb/images/bold.gif" alt=''/></a>  <a href="javascript: italicize();"><img border='0' title="斜体" src="editor/ubb/images/italic.gif" alt=''/></a>  <a href="javascript: underline();"><img border='0' title="下划线" src="editor/ubb/images/underline.gif" alt=''/></a>  <img src="editor/ubb/images/bar.gif" alt=''/>  <a href="javascript: image();"><img border='0' title="插入图片" src="editor/ubb/images/insertimage.gif" alt=''/></a>  <a href="javascript: hyperlink();"><img border='0' title="插入超链接" src="editor/ubb/images/url.gif" alt=''/></a>  <a href="javascript: email();"><img border='0' title="插入邮件地址" src="editor/ubb/images/email.gif" alt=''/></a>  <a href="javascript: quoteme();"><img border='0' title="插入引用文字" src="editor/ubb/images/quote.gif" alt=''/></a></div></div> <div id="emotid" class="panel-smilies" style="display: none;" onclick="showhidediv('emotid')"> <div class="panel-smilies-content"> <div id="smileygroup"><a href="javascript: insertemot('anger');"><img src="images/emot/thumbnail/anger.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('bad');"><img src="images/emot/thumbnail/bad.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('cool');"><img src="images/emot/thumbnail/cool.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('cry');"><img src="images/emot/thumbnail/cry.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('dog');"><img src="images/emot/thumbnail/dog.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('envy');"><img src="images/emot/thumbnail/envy.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('fear');"><img src="images/emot/thumbnail/fear.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('grin');"><img src="images/emot/thumbnail/grin.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('kill');"><img src="images/emot/thumbnail/kill.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('love');"><img src="images/emot/thumbnail/love.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('pig');"><img src="images/emot/thumbnail/pig.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('puke');"><img src="images/emot/thumbnail/puke.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('question');"><img src="images/emot/thumbnail/question.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('shock');"><img src="images/emot/thumbnail/shock.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('shuai');"><img src="images/emot/thumbnail/shuai.gif" alt='emot' border='0'/></a><br/><a href="javascript: insertemot('shy');"><img src="images/emot/thumbnail/shy.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('sleepy');"><img src="images/emot/thumbnail/sleepy.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('smile');"><img src="images/emot/thumbnail/smile.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('smoke');"><img src="images/emot/thumbnail/smoke.gif" alt='emot' border='0'/></a><a href="javascript: insertemot('stupid');"><img src="images/emot/thumbnail/stupid.gif" alt='emot' border='0'/></a></div> <script type="text/javascript"> //<![CDATA[ var emotgroup = new Array (); emotgroup[0]='<a href="javascript: insertemot(\'anger\');"><img src="images/emot/thumbnail/anger.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'bad\');"><img src="images/emot/thumbnail/bad.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'cool\');"><img src="images/emot/thumbnail/cool.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'cry\');"><img src="images/emot/thumbnail/cry.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'dog\');"><img src="images/emot/thumbnail/dog.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'envy\');"><img src="images/emot/thumbnail/envy.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'fear\');"><img src="images/emot/thumbnail/fear.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'grin\');"><img src="images/emot/thumbnail/grin.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'kill\');"><img src="images/emot/thumbnail/kill.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'love\');"><img src="images/emot/thumbnail/love.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'pig\');"><img src="images/emot/thumbnail/pig.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'puke\');"><img src="images/emot/thumbnail/puke.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'question\');"><img src="images/emot/thumbnail/question.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'shock\');"><img src="images/emot/thumbnail/shock.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'shuai\');"><img src="images/emot/thumbnail/shuai.gif" alt=\'emot\' border=\'0\'/></a><br/><a href="javascript: insertemot(\'shy\');"><img src="images/emot/thumbnail/shy.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'sleepy\');"><img src="images/emot/thumbnail/sleepy.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'smile\');"><img src="images/emot/thumbnail/smile.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'smoke\');"><img src="images/emot/thumbnail/smoke.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'stupid\');"><img src="images/emot/thumbnail/stupid.gif" alt=\'emot\' border=\'0\'/></a>'; emotgroup[1]='<a href="javascript: insertemot(\'sweat\');"><img src="images/emot/thumbnail/sweat.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'thumbdown\');"><img src="images/emot/thumbnail/thumbdown.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'unhappy\');"><img src="images/emot/thumbnail/unhappy.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'uplook\');"><img src="images/emot/thumbnail/uplook.gif" alt=\'emot\' border=\'0\'/></a><a href="javascript: insertemot(\'zan\');"><img src="images/emot/thumbnail/zan.gif" alt=\'emot\' border=\'0\'/></a>'; //]]> </script> <div id="smileybuttons"><span class="smileybut"><a href="javascript: turnsmileygroup(0);">1</a></span><span class="smileybut"><a href="javascript: turnsmileygroup(1);">2</a></span></div> </div> </div> <script type="text/javascript">securitycodejs="验证码 <span id='securityimagearea'><img src='inc/securitycode.php?rand=9130' alt='' title='请输入验证码' style='cursor: pointer;' onclick=\"refreshsecuritycode('securityimagearea', 'v_security');\"/></span> <input name='v_security' id='v_security' type='text' size='4' maxlength='4' class='text' style='ime-mode: disabled' /> ";</script> <textarea name="v_content" id="v_content" cols="64" rows="10" onkeydown="ctrlenterkey(event);" onfocus="if (securitycodejs!=null) {document.getElementById('showsecuritycode').innerHTML=securitycodejs; securitycodejs=null;}"></textarea> <br/> <span id="showsecuritycode"></span> <div style="padding-top:10px"> <input type="hidden" name="v_id" id="v_id" value="656" /><input type="hidden" name="v_reppsw" id="v_reppsw" value="" /> <input type="button" name="btnSubmit" id="btnSubmit" value="提交" class="button" onclick="ajax_submit('addreply'); return false;"/>  <input name="reset" id="reset" type="reset" value="重置" class="button" /> </div> </div> </div> </form> </div> <div class="article-bottom" style="display: none"> <div class="pages"> </div> </div> </div> <div id="innerContent-bottom"></div> </div> <div id="sidebar" class="sidebar"> <div id="innerSidebar"> <div id="innerSidebarSearch"> <div id="search-title"></div> <div id="search-content"> </div> <div id="search-bottom"></div> </div> <div id="innerSidebarOne"> <div id='panelCategory' class="panel"> <div class="panel-top"> <h5 style="cursor: pointer" onclick='showhidediv("sideblock_category");'>分类</h5> </div> <div class="panel-content" id="sideblock_category" style="display: block"> <ul><li><a href="category/49/" title="Swoole相关代码及文章收纳区">Swoole专题研究</a> [56] <a href="feed.php?go=category_49"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/0/" title="关于程序算法及思想.">WEB2.0</a> [4488] <a href="feed.php?go=category_0"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/32/" title="UnixOS技术">Unix/LinuxC技术</a> [1418] <a href="feed.php?go=category_32"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/29/" title="Php/Js/Shell/Go">Php/Js/Shell/Go</a> [1084] <a href="feed.php?go=category_29"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/71/" title="Java/SprintBoot技术">Java/SprintBoot</a> [2] <a href="feed.php?go=category_71"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/31/" title="系统架构与硬件">系统架构与硬件</a> [128] <a href="feed.php?go=category_31"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/56/" title="交换机、路由器、网桥相关组网知识。">交换机与路由器</a> [14] <a href="feed.php?go=category_56"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/57/" title="虚拟云技术与Docker">虚拟云与Docker</a> [54] <a href="feed.php?go=category_57"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/60/" title="疑难杂症">troubleshooting</a> [0] <a href="feed.php?go=category_60"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/58/" title="DevOps开发运维自动化">DevOps开发运维</a> [12] <a href="feed.php?go=category_58"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/27/" title="Cache与存储">Cache与Store</a> [23] <a href="feed.php?go=category_27"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/30/" title="搜索引擎技术">搜索引擎技术</a> [0] <a href="feed.php?go=category_30"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/26/" title="Web服务器">Web服务器</a> [152] <a href="feed.php?go=category_26"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/28/" title="数据库技术">数据库技术</a> [183] <a href="feed.php?go=category_28"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/40/" title="Android IOS Http/WebSocket网络相关/移动端技术">前端技术</a> [30] <a href="feed.php?go=category_40"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/52/" title="代码研发、版本控制。">版本控制</a> [62] <a href="feed.php?go=category_52"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/53/" title="软硬件测试文章、文档、链接。">软件测试</a> [3] <a href="feed.php?go=category_53"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/59/" title="Https ">加密解密</a> [5] <a href="feed.php?go=category_59"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/62/" title="软件的注册码和破解方法">注册破解</a> [2] <a href="feed.php?go=category_62"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/14/" title="产品管理">产品管理</a> [56] <a href="feed.php?go=category_14"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/25/" title="个人生活的体味及无形中的感悟及其小令。。。。">生活笔记</a> [910] <a href="feed.php?go=category_25"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/4/" title="银色经典">银色经典</a> [474] <a href="feed.php?go=category_4"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li class="indent"><a href="category/20/" title="东拉西扯">东拉西扯</a> [318] <a href="feed.php?go=category_20"><img src="template/trielegant/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li></ul> </div> <div class="panel-bottom"> </div> </div><div class="panel"> <div class="panel-top"> <h5 onclick='showhidediv("sidebar_entries");'>最新日志</h5> </div> <div class="panel-content" id="sidebar_entries" style="display: block"> <ul><li class='rowcouple'><a href="post/12615/" title="[实践OK] GO语言中Goroutine 泄露的学习,以及在Go语言中,整个 main 函数中的代码都是在主 goroutine 中执行的。主 goroutine 负责启动程序的执行,并处理后续的逻辑,所以需要用var wg sync.WaitGroup  // 创建 WaitGroup,不能提前退出而确保主 goroutine 等待所有子 goroutine 完成。如果不使用这种方式,主 goroutine 可能在子 goroutine 执行之前就结束,导致某些任务未能完成。">[实践OK] GO语言中Goroutine 泄露的学习,以及在Go语言中,整个 main 函数中的代码都是在主 goroutine 中执行的。主 goroutine 负责启动程序的执行,并处理后续的逻辑,所以需要用var wg sync.WaitGroup  // 创建 WaitGroup,不能提前退出而确保主 goroutine 等待所有子 goroutine 完成。如果不使用这种方式,主 goroutine 可能在子 goroutine 执行之前就结束,导致某些任务未能完成。</a></li><li class='rowodd'><a href="post/12538/" title="FreeBSD from 14.0 Upgrading to 14.1">FreeBSD from 14.0 Upgrading to 14.1</a></li><li class='rowcouple'><a href="post/12475/" title="[实践OK]远程桌面连接linux/centos服务器时,画面突然放大,画面随光标移动">[实践OK]远程桌面连接linux/centos服务器时,画面突然放大,画面随光标移动</a></li><li class='rowodd'><a href="post/12442/" title="[实践OK]正则表达式RegexBuddy的界面及高亮操作,以解决默认出现没匹配上的误区。">[实践OK]正则表达式RegexBuddy的界面及高亮操作,以解决默认出现没匹配上的误区。</a></li><li class='rowcouple'><a href="post/12441/" title="[实践OK]iPhone 找不到相机功能怎么办 iPhone 找不到相机功能解决方法【详解">[实践OK]iPhone 找不到相机功能怎么办 iPhone 找不到相机功能解决方法【详解</a></li><li class='rowodd'><a href="post/12440/" title="[实践OK]PHP正则实现天气预报UL表格及其里面天气信息内容获取。">[实践OK]PHP正则实现天气预报UL表格及其里面天气信息内容获取。</a></li><li class='rowcouple'><a href="post/12366/" title="[实践OK]CentOS7下面screen is very slow when it opens new window。">[实践OK]CentOS7下面screen is very slow when it opens new window。</a></li><li class='rowodd'><a href="post/12299/" title="[实践OK]php的round函数实现将微秒转换为毫秒">[实践OK]php的round函数实现将微秒转换为毫秒</a></li><li class='rowcouple'><a href="post/12110/" title="[实践OK]在FreeBSD上安装使用unzip">[实践OK]在FreeBSD上安装使用unzip</a></li><li class='rowodd'><a href="post/12080/" title="[实践OK]PHP的CURL支持302/301的跳转的代码写法和Shell下的Curl参数-L实现跳转。">[实践OK]PHP的CURL支持302/301的跳转的代码写法和Shell下的Curl参数-L实现跳转。</a></li><li class='rowcouple'><a href="post/12043/" title="[实践OK]MacBook下面查看系统日志的步骤。">[实践OK]MacBook下面查看系统日志的步骤。</a></li><li class='rowodd'><a href="post/12031/" title="[实践OK]Windows11丢失mfc100u.dll解决 时间2023-9-14">[实践OK]Windows11丢失mfc100u.dll解决 时间2023-9-14</a></li><li class='rowcouple'><a href="post/11979/" title="[实践OK]Windows11如何把任务栏放左边 Win11把任务栏放到左边教程【步骤分享】">[实践OK]Windows11如何把任务栏放左边 Win11把任务栏放到左边教程【步骤分享】</a></li><li class='rowodd'><a href="post/11921/" title="[实践OK]mac中的软链接文档,如何打包时打包成真实文档路径。2是拷备时直接拷原文件">[实践OK]mac中的软链接文档,如何打包时打包成真实文档路径。2是拷备时直接拷原文件</a></li><li class='rowcouple'><a href="post/11915/" title="[实践OK]go-cyclic 循环依赖解决工具,解决import cycle not allowed。">[实践OK]go-cyclic 循环依赖解决工具,解决import cycle not allowed。</a></li><li class='rowodd'><a href="post/11835/" title="[实践OK]Linux SIGTERM 捕获">[实践OK]Linux SIGTERM 捕获</a></li><li class='rowcouple'><a href="post/11826/" title="[kvm] Failed to get shared “write” lock Is another process using the image?">[kvm] Failed to get shared “write” lock Is another process using the image?</a></li><li class='rowodd'><a href="post/11800/" title="windows中关闭高危端口TCP & UDP:135、137、138、139、445">windows中关闭高危端口TCP & UDP:135、137、138、139、445</a></li><li class='rowcouple'><a href="post/11797/" title="[实践OK]Mac 系统中,使用以下快捷键可以复制 Word 中的纯文本内容而不带样式,word如何在表格和标题之间插入空白行?">[实践OK]Mac 系统中,使用以下快捷键可以复制 Word 中的纯文本内容而不带样式,word如何在表格和标题之间插入空白行?</a></li><li class='rowodd'><a href="post/11796/" title="Java8(291)之后 , 禁用了TLS1.1 , 使JDBC无法用SSL连接SqlServer2008怎么办,以下是解决办法">Java8(291)之后 , 禁用了TLS1.1 , 使JDBC无法用SSL连接SqlServer2008怎么办,以下是解决办法</a></li><li class='rowcouple'><a href="post/11785/" title="[实践OK]PHP检测当前字符编码并转码">[实践OK]PHP检测当前字符编码并转码</a></li><li class='rowodd'><a href="post/11775/" title="[alfred方式]Chrome的全能启动器扩展 - Steward">[alfred方式]Chrome的全能启动器扩展 - Steward</a></li><li class='rowcouple'><a href="post/11723/" title="[实践OK]在Mac上关闭/打开聚焦索引,【macOS】“聚焦”使用大量能耗解决方案(重建“聚焦”索引)">[实践OK]在Mac上关闭/打开聚焦索引,【macOS】“聚焦”使用大量能耗解决方案(重建“聚焦”索引)</a></li><li class='rowodd'><a href="post/11713/" title="[实践OK]mysql加密存储敏感数据">[实践OK]mysql加密存储敏感数据</a></li><li class='rowcouple'><a href="post/11687/" title="[实践OK]Alpine Linux 网络连接工具 - iproute2 / ip ss,安装ss命令: apk add iprout2">[实践OK]Alpine Linux 网络连接工具 - iproute2 / ip ss,安装ss命令: apk add iprout2</a></li><li class='rowodd'><a href="post/11678/" title="[实践OK]win10关闭防火墙还是被拦截解决方法,解决win10虚拟机上端口不通的问题。">[实践OK]win10关闭防火墙还是被拦截解决方法,解决win10虚拟机上端口不通的问题。</a></li><li class='rowcouple'><a href="post/11676/" title="俄罗斯轮转赌命令行程序">俄罗斯轮转赌命令行程序</a></li><li class='rowodd'><a href="post/11656/" title="[实践OK]Windows环境下如何打开cmd进入到指定目录">[实践OK]Windows环境下如何打开cmd进入到指定目录</a></li><li class='rowcouple'><a href="post/11655/" title="[实践OK]如何在Win11中关闭textinputhost这个进程?不能关。">[实践OK]如何在Win11中关闭textinputhost这个进程?不能关。</a></li><li class='rowodd'><a href="post/11654/" title="[实践OK]Windows 10的CompatTelRunner.exe占用磁盘高的方法">[实践OK]Windows 10的CompatTelRunner.exe占用磁盘高的方法</a></li><li class='rowcouple'><a href="post/11653/" title="[实践OK]win10怎么关闭电脑后台运行程序">[实践OK]win10怎么关闭电脑后台运行程序</a></li><li class='rowodd'><a href="post/11652/" title="[实践OK]How to disable/uninstall the Photo app in Windows 10?">[实践OK]How to disable/uninstall the Photo app in Windows 10?</a></li><li class='rowcouple'><a href="post/11651/" title="[实践OK]What is SearchApp.exe and How to Disable It?">[实践OK]What is SearchApp.exe and How to Disable It?</a></li><li class='rowodd'><a href="post/11650/" title="[实践OK]关闭Windows下的Google Chrome 后继续运行后台应用,在Google Chrome关闭时取消选中继续运行后台应用选项。">[实践OK]关闭Windows下的Google Chrome 后继续运行后台应用,在Google Chrome关闭时取消选中继续运行后台应用选项。</a></li><li class='rowcouple'><a href="post/11626/" title="[解决方案]macbook下面root使用ln:无法创建符号链接"/usr/bin/python":权限不够,MAC /usr/bin/目录下 Operation not permitted的解决。">[解决方案]macbook下面root使用ln:无法创建符号链接"/usr/bin/python":权限不够,MAC /usr/bin/目录下 Operation not permitted的解决。</a></li><li class='rowodd'><a href="post/11625/" title="[实践OK]mac下打开zsh时出现:zsh: killed     env ZSH=$ZSH ZSH_CACHE_DIR=$ZSH_CACHE_DIR  zsh -f">[实践OK]mac下打开zsh时出现:zsh: killed     env ZSH=$ZSH ZSH_CACHE_DIR=$ZSH_CACHE_DIR  zsh -f</a></li><li class='rowcouple'><a href="post/11618/" title="[实践OK]CentOS8下关闭 PackageKit 服务。">[实践OK]CentOS8下关闭 PackageKit 服务。</a></li><li class='rowodd'><a href="post/11611/" title="[实践OK]Parallels Desktop虚拟机Centos系统安装后联网以及互通宿主机端口映射。----直接共享上网了。">[实践OK]Parallels Desktop虚拟机Centos系统安装后联网以及互通宿主机端口映射。----直接共享上网了。</a></li><li class='rowcouple'><a href="post/11610/" title="[实践OK]CentOS 8怎么取消锁屏,CentOS 8自动锁屏怎么关闭?">[实践OK]CentOS 8怎么取消锁屏,CentOS 8自动锁屏怎么关闭?</a></li><li class='rowodd'><a href="post/11609/" title="[实践OK]在 CentOS 8 上安装 Visual Studio Code">[实践OK]在 CentOS 8 上安装 Visual Studio Code</a></li><li class='rowcouple'><a href="post/11594/" title=" [实践OK]苹果电脑进阶快速查看“显示简介”的快捷键, 苹果电脑“访达”也能显示文件路径。"> [实践OK]苹果电脑进阶快速查看“显示简介”的快捷键, 苹果电脑“访达”也能显示文件路径。</a></li><li class='rowodd'><a href="post/11586/" title="[实践OK]Mac 安装wireshark The capture session could not be initiated on capture device "en0" (You don't have permission to capture on that device).">[实践OK]Mac 安装wireshark The capture session could not be initiated on capture device "en0" (You don't have permission to capture on that device).</a></li></ul> </div> <div class="panel-bottom"> </div> </div><div class="panel"> <div class="panel-top"> <h5 onclick='showhidediv("sidebar_link");'>链接</h5> </div> <div class="panel-content" id="sidebar_link" style="display: block"> <ul><li><strong> 技术大类</strong></li><li class="indent"><a href="http://www.ijavascript.cn" target="_blank" title="javascript教材 - ">javascript教材</a></li><li class="indent"><a href="http://www.chinaz.com/zt/php/index.htm" target="_blank" title="PHP设计模式介绍 - ">PHP设计模式介绍</a></li><li class="indent"><a href="http://www.thinkphp.cn/Down/chm/" target="_blank" title="thinkPHP学习文档 - ">thinkPHP学习文档</a></li><li class="indent"><a href="http://blog.chinaunix.net/u1/55630/" target="_blank" title="Linux研究 - ">Linux研究</a></li><li class="indent"><a href="http://www.uml.org.cn/" target="_blank" title="UML软件工程组织 - ">UML软件工程组织</a></li><li class="indent"><a href="ftp://openmsscn:openmsscn@m.javascript.cn/Our Documents/" target="_blank" title="大话设计模式 - ">大话设计模式</a></li><li class="indent"><a href="http://www.hbcms.com/ " target="_blank" title="HBCMS - http://peal+smarty的cms">HBCMS</a></li><li class="indent"><a href="http://blog.csdn.net/onsrs/archive/2009/06.aspx" target="_blank" title="onsrs的专栏(PHP) - ">onsrs的专栏(PHP)</a></li><li class="indent"><a href="http://www.rfmcu.cn/UpFiles/c51rf/databook/CC1100详细介绍.pdf" target="_blank" title="CC1100详细介绍 - ">CC1100详细介绍</a></li><li class="indent"><a href="http://doserver.net" target="_blank" title="服务器开发 - ">服务器开发</a></li><li class="indent"><a href="http://odyniec.net/projects/imgareaselect/" target="_blank" title="Jquery编辑头像调整比例插件 - ">Jquery编辑头像调整比例插件</a></li><li class="indent"><a href="http://www.orsoon.com" target="_blank" title="未来软件园[绿色软件] - ">未来软件园[绿色软件]</a></li><li class="indent"><a href="http://blog.csdn.net/dongliqiang2006" target="_blank" title="dongliqiang2006的专栏 - ">dongliqiang2006的专栏</a></li><li class="indent"><a href="http://sqlrelay.sourceforge.net/" target="_blank" title="SQL Relay - ">SQL Relay</a></li><li class="indent"><a href="http://rpm.pbone.net/" target="_blank" title="RPM包搜索 - ">RPM包搜索</a></li><li class="indent"><a href="http://www.blogjava.net/lusm/archive/2007/12/03/165032.html" target="_blank" title="M虚拟机下Linux arm COM(串口)与JTAG(并口) 配置图解 - ">M虚拟机下Linux arm COM(串口)与JTAG(并口) 配置图解</a></li><li class="indent"><a href="http://www.phpvod.com/" target="_blank" title="PHP视频点播系统 - ">PHP视频点播系统</a></li><li class="indent"><a href="http://www.mysqlab.net" target="_blank" title="MySQL实验室 因为专注,所以专业 - ">MySQL实验室 因为专注,所以专业</a></li><li class="indent"><a href="http://www.aaronw.cn" target="_blank" title="我的技术生活-王炜 - ">我的技术生活-王炜</a></li><li class="indent"><a href="http://www.eguidedog.net/" target="_blank" title="电子导盲犬 - ">电子导盲犬</a></li><li class="indent"><a href="http://www.ibiblio.org/pub/Linux/docs/HOWTO/other-formats/html_single/Serial-HOWTO.html" target="_blank" title="Serial HOWTO - setserial , stty">Serial HOWTO</a></li><li class="indent"><a href="http://pecl.php.net/package-stats.php" target="_blank" title="Php_Dio_Linux - ">Php_Dio_Linux</a></li><li class="indent"><a href="http://blog.sina.com.cn/wadezhang" target="_blank" title="三哥的BLOG(DBA&php) - ">三哥的BLOG(DBA&php)</a></li><li class="indent"><a href="http://www.piaoyi.org/" target="_blank" title="飘易博客 - 关注SEO,网站 - ">飘易博客 - 关注SEO,网站</a></li><li class="indent"><a href="http://download.virtualbox.org/virtualbox/" target="_blank" title="oracle_virtualbox_downLoad - ">oracle_virtualbox_downLoad</a></li><li class="indent"><a href="http://blog.sina.com.cn/5inapp" target="_blank" title="当年Sina乒乓球俱乐部 - ">当年Sina乒乓球俱乐部</a></li><li class="indent"><a href="http://www.laruence.com/" target="_blank" title="风雪之隅 - ">风雪之隅 </a></li><li class="indent"><a href="http://blog.sina.com.cn/bigstone" target="_blank" title="火狐 - ">火狐</a></li><li class="indent"><a href="http://linux.vbird.org/linux_basic/redhat6.1/linux_10kernel.php" target="_blank" title="鸟哥编译linux内核 - ">鸟哥编译linux内核</a></li><li class="indent"><a href="http://www.phpforandroid.net/" target="_blank" title="PHP for Android project - ">PHP for Android project</a></li><li class="indent"><a href="http://iphp.blog.sohu.com/#tp_19aa339792" target="_blank" title="我爱夜生活 - ">我爱夜生活</a></li><li class="indent"><a href="http://ymsomix.blog.sohu.com/#tp_a291ca7792" target="_blank" title=" -搜狐博客 - "> -搜狐博客</a></li><li class="indent"><a href="http://tech.sina.com.cn/soft/2000-09-11/725.html" target="_blank" title="Sina Pager 新浪寻呼[其实不是寻呼而是用户关系链,所以失败] - ">Sina Pager 新浪寻呼[其实不是寻呼而是用户关系链,所以失败]</a></li><li class="indent"><a href="http://blog.sina.com.cn/iyangjian" target="_blank" title="Berkeley DB - 杨建的BLOG - ">Berkeley DB - 杨建的BLOG</a></li><li class="indent"><a href="http://www.mysqlab.net/" target="_blank" title="MySQL 实验室 - ">MySQL 实验室</a></li><li class="indent"><a href="http://blog.sina.com.cn/skipall" target="_blank" title="【王敩】的BLOG - ">【王敩】的BLOG</a></li><li class="indent"><a href="http://www.ems.com.cn/" target="_blank" title="中国邮政集团公司[EMS查询] - ">中国邮政集团公司[EMS查询]</a></li><li class="indent"><a href="http://www.chhua.com" target="_blank" title="web开发笔记 - ">web开发笔记</a></li><li class="indent"><a href="http://raphaeljs.com/" target="_blank" title="Js实现曲线—JavaScript Library - ">Js实现曲线—JavaScript Library</a></li><li class="indent"><a href="http://blog.sina.com.cn/s/blog_48835ef9010003ho.html" target="_blank" title="朱彦斌_新浪博客_前Sina同事_PHP扩展 - ">朱彦斌_新浪博客_前Sina同事_PHP扩展</a></li><li class="indent"><a href="http://my.huhoo.net/study/" target="_blank" title="My Study About My Learn or Study etc. - ">My Study About My Learn or Study etc.</a></li><li class="indent"><a href="http://www.acme.com/software/http_load/" target="_blank" title="http_load - ">http_load</a></li><li class="indent"><a href="http://www.cplusplus.com/reference/algorithm/max/" target="_blank" title="C++函授搜索 - ">C++函授搜索</a></li><li class="indent"><a href="http://blog.thinkinlamp.com/?cat=7" target="_blank" title="Thinking In LAMP Blog - ">Thinking In LAMP Blog</a></li><li class="indent"><a href="http://blog.yufeng.info/" target="_blank" title="Erlang非业余研究 - ">Erlang非业余研究</a></li><li class="indent"><a href="http://user.qzone.qq.com/19830676/blog/1229789905" target="_blank" title="MVC的靠谱论述 - ">MVC的靠谱论述</a></li><li class="indent"><a href="http://www.gtdlife.cn/2011/2129/control-your-time-and-life/" target="_blank" title="实践GTD - ">实践GTD</a></li><li class="indent"><a href="http://blog.sina.com.cn/wanyueyuner" target="_blank" title="吃货美食集中营 - ">吃货美食集中营</a></li><li class="indent"><a href="http://www.doyoung.net/" target="_blank" title="杜洋工作室 - ">杜洋工作室</a></li><li class="indent"><a href="http://www.jinmi.com/backorder/backorderes.asp?keyword=&so=%CB%D1+%CB%F7&keysite=1&nokeyword=&deldate=2011-6-5&delclass=allclass&maxlen=5&figure=1&orderby=1&ext=com" target="_blank" title="申请并查找域名 - ">申请并查找域名</a></li><li class="indent"><a href="http://www.hellodb.net/" target="_blank" title="Hello Database - ">Hello Database</a></li><li class="indent"><a href="http://linux.vbird.org/linux_basic/0210filepermission.php" target="_blank" title="鸟哥的 Linux 私房菜 - ">鸟哥的 Linux 私房菜</a></li><li class="indent"><a href="http://www.gamutsoft.com/expert/list.aspx?nodeid=207" target="_blank" title="王总总结[邓小娜] - ">王总总结[邓小娜]</a></li><li class="indent"><a href="http://www.kiees.cn/sf.asp" target="_blank" title=" 顺风快递 单号查询 - "> 顺风快递 单号查询</a></li><li class="indent"><a href="http://blog.csdn.net/Haohappy2004/article/details/893060" target="_blank" title="PHP5研究中心 - ">PHP5研究中心</a></li><li class="indent"><a href="http://laolang.xtmm.cn/" target="_blank" title="老狼博客 - ">老狼博客</a></li><li class="indent"><a href="http://blog.chinaunix.net/space.php?uid=20737871&do=blog&cuid=1988527" target="_blank" title="一篇关于libevent的文章 - ">一篇关于libevent的文章</a></li><li class="indent"><a href="http://www.cnweblog.com/fly2700/" target="_blank" title="海阔天空 张翼飞翔 - ">海阔天空 张翼飞翔</a></li><li class="indent"><a href="http://www.dzhope.com/index.php" target="_blank" title="沧海一粟 - ">沧海一粟</a></li><li class="indent"><a href="http://user.qzone.qq.com/40908683?ADUIN=372647693&ADSESSION=1339378128&ADTAG=CLIENT.QQ.4561_FriendInfo_PersonalInfo.0&ptlang=2052#!app=2&pos=catalog_list" target="_blank" title="Linux Mysql C++相关文章汇集 - ">Linux Mysql C++相关文章汇集</a></li><li class="indent"><a href="http://user.qzone.qq.com/40908683?ADUIN=372647693&ADSESSION=1339378128&ADTAG=CLIENT.QQ.4561_FriendInfo_PersonalInfo.0&ptlang=2052#!app=2&pos=catalog_list" target="_blank" title="Linux Mysql C++相关文章汇集 - ">Linux Mysql C++相关文章汇集</a></li><li class="indent"><a href="http://www.rpmfind.net/linux/rpm2html/search.php?query=screen&submit=Search+...&system=&arch=" target="_blank" title="找不同的Linux下的rpm搜索 - ">找不同的Linux下的rpm搜索</a></li><li><strong>IT界好友</strong></li><li class="indent"><a href="http://blog.chinaunix.net/u/29134/" target="_blank" title="上帝他爷 - ">上帝他爷</a></li><li class="indent"><a href="http://blog.vetcafe.net" target="_blank" title="姜源的WebLog - Sina同事">姜源的WebLog</a></li><li class="indent"><a href="http://blog.chinaunix.net/u2/74524/" target="_blank" title="嵌入式学习笔记 - ">嵌入式学习笔记</a></li><li class="indent"><a href="http://zyan.cc/" target="_blank" title="回忆未来[张宴] - 中南民族大学...LAMP">回忆未来[张宴]</a></li><li class="indent"><a href="http://blog.sina.com.cn/dev" target="_blank" title="Web开发者 - ">Web开发者</a></li><li class="indent"><a href="http://blog.donews.com/xinhe/" target="_blank" title="xinhe - I like open and free">xinhe</a></li><li class="indent"><a href="http://blog.sina.com.cn/blogprogram" target="_blank" title="蚁巢[建鑫的博客] - ">蚁巢[建鑫的博客]</a></li><li class="indent"><a href="http://blog.sina.com.cn/u/1375833007" target="_blank" title="宇安的博客 - ">宇安的博客</a></li><li class="indent"><a href="http://blog.sina.com.cn/hdcola" target="_blank" title="黄冬的sina博客 - ">黄冬的sina博客</a></li><li class="indent"><a href="http://blog.donews.com/keso/" target="_blank" title="Playin' with IT - ">Playin' with IT</a></li><li class="indent"><a href="http://www.albertzhu.com/" target="_blank" title="Albert Zhu 朱文昊 - ">Albert Zhu 朱文昊</a></li><li class="indent"><a href="http://blog.sina.com.cn/u/1181509184" target="_blank" title="杨建的BLOG - ">杨建的BLOG</a></li><li class="indent"><a href="http://www.neatstudio.com/" target="_blank" title="膘叔 簡單人生 - ">膘叔 簡單人生</a></li><li class="indent"><a href="http://dancewithnet.com/" target="_blank" title="随网之舞 - ">随网之舞</a></li><li class="indent"><a href="http://www.happinesz.cn/" target="_blank" title="幸福收场夹 - ">幸福收场夹</a></li><li class="indent"><a href="http://www.liucheng.org" target="_blank" title=" 刘成的博客 - "> 刘成的博客</a></li><li class="indent"><a href="http://wangyueblog.com/2009/02/18/wordpress-theme-excellence/" target="_blank" title="关于互联网和Web2.0的挨踢博客 - ">关于互联网和Web2.0的挨踢博客</a></li><li class="indent"><a href="blog.lrenwang.com" target="_blank" title="lrenwang博客 - ">lrenwang博客</a></li><li class="indent"><a href="http://blog.sina.com.cn/s/blog_451aab2f010095or.html" target="_blank" title="二号懒虫|盛冬平 - ">二号懒虫|盛冬平</a></li><li class="indent"><a href="http://blog.sina.com.cn/u/1182709962" target="_blank" title="IT-朱玉兵的博客 - ">IT-朱玉兵的博客</a></li><li class="indent"><a href="http://yucz.cn/" target="_blank" title="个人随笔 | 长春de博客 - ">个人随笔 | 长春de博客</a></li><li><strong>硬件设计</strong></li><li class="indent"><a href="http://www.ourmpu.com/" target="_blank" title="电子驿站-单片机 - ">电子驿站-单片机</a></li><li class="indent"><a href="http://www.hzlitai.com.cn/product/Embedded-SBC/1136.html" target="_blank" title="8个串口 - ">8个串口</a></li><li class="indent"><a href="http://www.rfmcu.cn/lbee/read5.aspx" target="_blank" title="无线温湿度传感器监控系统 - ">无线温湿度传感器监控系统</a></li><li class="indent"><a href="http://www.huazhoucn.com/porshow.aspx?pid=190&ptitle=TSic506温度传感器" target="_blank" title="德国的高精度温度传感器 - ">德国的高精度温度传感器</a></li><li class="indent"><a href="http://www.hzlitai.com.cn/product.html" target="_blank" title="单板电脑产品 - ">单板电脑产品</a></li><li class="indent"><a href="http://www.doc88.com/p-5780355460.html" target="_blank" title="基于遗传算法的真空感应炉PID温度控制系统 - ">基于遗传算法的真空感应炉PID温度控制系统</a></li><li class="indent"><a href="http://www.hoperf.cn/" target="_blank" title="无线发射芯片与模块厂商 - ">无线发射芯片与模块厂商</a></li><li class="indent"><a href="http://ishare.iask.sina.com.cn/f/14913930.html" target="_blank" title="STC12C2052AD有晶振的单片机 - ">STC12C2052AD有晶振的单片机</a></li><li class="indent"><a href="http://www.nixieclock.org/" target="_blank" title="YanZeyuan's DIY Studio - ">YanZeyuan's DIY Studio</a></li><li class="indent"><a href="http://www.igao7.com" target="_blank" title="爱搞机|智能设备玩机第一站 - ">爱搞机|智能设备玩机第一站</a></li><li class="indent"><a href="http://www.orangepi.cn/kuaisurumenzhinan/kuaisurumenzhinan.html" target="_blank" title="orangepi - ">orangepi</a></li><li class="indent"><a href="https://github.com/simonmonk/raspberrypi_cookbook/blob/master/code/temp_DS18B20.py" target="_blank" title="老外的树莓派开发实战Ds18B20的Python代码 - ">老外的树莓派开发实战Ds18B20的Python代码</a></li><li class="indent"><a href="https://blog.csdn.net/predixcn/article/details/71244430" target="_blank" title="Predix之玩转树莓派(2) 从传感器采集数据 - ">Predix之玩转树莓派(2) 从传感器采集数据</a></li><li><strong>快捷访问</strong></li><li class="indent"><a href="http://blog.sina.com.cn/kaifulee" target="_blank" title="开复和他的学生网 - ">开复和他的学生网</a></li><li class="indent"><a href="http://blog.sina.com.cn/u/1188223274" target="_blank" title="教父的地盘 - 教父的地盘">教父的地盘</a></li><li class="indent"><a href="http://ceo.icxo.com/" target="_blank" title="首席执行官 - ">首席执行官</a></li><li class="indent"><a href="http://www.88php.com" target="_blank" title="东方PHP技术论坛 - ">东方PHP技术论坛</a></li><li class="indent"><a href="http://oss.lzu.edu.cn/" target="_blank" title="兰大开源社区Blog - ">兰大开源社区Blog</a></li><li class="indent"><a href="http://ftp.encntc.edu.tw/Study/95%a6~%b4%bb%b4%c1%ac%e3%b2%df/php&mysql+xoops/" target="_blank" title="Xoop研究[台湾] - ">Xoop研究[台湾]</a></li><li class="indent"><a href="http://www.it-adv.net/" target="_blank" title="飞信机器人 - ">飞信机器人</a></li><li class="indent"><a href="http://www.iciba.com/" target="_blank" title="爱词霸 - ">爱词霸</a></li><li class="indent"><a href="http://www.gotoread.com/mag/13013/emag.html" target="_blank" title="《黑客×档案》月刊数字杂志 - ">《黑客×档案》月刊数字杂志</a></li><li class="indent"><a href="http://www.bzbuluo.cn/" target="_blank" title="windows7壁纸下载 - ">windows7壁纸下载</a></li><li class="indent"><a href="http://www.dnspod.com/" target="_blank" title="dnspod - ">dnspod</a></li><li class="indent"><a href="http://www.hao123.com/ss/lccx.htm" target="_blank" title="火车站路径和时刻表 - ">火车站路径和时刻表</a></li><li class="indent"><a href="http://www.json.org/json-zh.html" target="_blank" title="C++ 的Json库 - ">C++ 的Json库</a></li><li class="indent"><a href="http://www.123cha.com/" target="_blank" title="查看联通网通或者电信的 - ">查看联通网通或者电信的</a></li><li class="indent"><a href="http://www.webkaka.com/Ping.aspx?url=bbs.dashunde.com" target="_blank" title="各地Ping值URL - ">各地Ping值URL</a></li><li class="indent"><a href="http://ping.chinaz.com/" target="_blank" title="多个地点Ping服务器 - ">多个地点Ping服务器</a></li><li class="indent"><a href="http://www.kd185.com/post.php" target="_blank" title="邮局包裹单号查询 - ">邮局包裹单号查询</a></li><li class="indent"><a href="http://theater.mtime.com/China_Guangdong_Province_Shenzen_Nanshan/2167/" target="_blank" title="深圳益田电影播放时间 - ">深圳益田电影播放时间</a></li><li class="indent"><a href="http://kejiao.cntv.cn/C27668/videopage/" target="_blank" title="大隋风云-百家讲坛 - ">大隋风云-百家讲坛</a></li><li class="indent"><a href="http://sz.chachaba.com/" target="_blank" title="查查吧--深圳三维地图 - ">查查吧--深圳三维地图</a></li><li class="indent"><a href="http://tool.chinaz.com/Seos/Sites.aspx" target="_blank" title="搜索引擎收录/反链查询 - ">搜索引擎收录/反链查询</a></li><li class="indent"><a href="http://blog.sina.com.cn/dangnianmingyue" target="_blank" title="当年明月的BLOG - ">当年明月的BLOG</a></li><li class="indent"><a href="http://linux.cn/portal.php" target="_blank" title="Linux中国 - ">Linux中国 </a></li><li class="indent"><a href="http://ping.chinaz.com/" target="_blank" title="Ping检测(网站测速部分体现) - ">Ping检测(网站测速部分体现)</a></li><li class="indent"><a href="http://www.webkaka.com/Ping.aspx" target="_blank" title="ping响应速度-较为详细 - ">ping响应速度-较为详细</a></li><li class="indent"><a href="http://www.ubuntukylin.com/" target="_blank" title="UbuntuKylin -首页 - ">UbuntuKylin -首页</a></li><li class="indent"><a href="http://www.linkwan.com/gb/broadmeter/" target="_blank" title="网速测试 IP查询 路由分析——网络测试工具 - ">网速测试 IP查询 路由分析——网络测试工具</a></li><li class="indent"><a href="http://rpm.pbone.net/index.php3" target="_blank" title="rpm包查询 - ">rpm包查询</a></li><li class="indent"><a href="http://www.portablesoft.org/" target="_blank" title="精品绿色便携软件 - ">精品绿色便携软件</a></li><li class="indent"><a href="http://rpm.pbone.net/index.php3" target="_blank" title="查找rpm包 - ">查找rpm包</a></li><li class="indent"><a href="http://www.dgtle.com/portal.php" target="_blank" title="数字尾巴-分享美好数字生活 - ">数字尾巴-分享美好数字生活</a></li><li class="indent"><a href="http://www.appinn.com/" target="_blank" title="小众软件 - ">小众软件</a></li><li class="indent"><a href="http://map.qq.com/#pano=100431Y4131122111419480&heading=182&pitch=14&zoom=1" target="_blank" title="腾讯地图-深圳宝安国际机场新航站楼 - ">腾讯地图-深圳宝安国际机场新航站楼</a></li><li class="indent"><a href="http://jmeter.apache.org/download_jmeter.cgi" target="_blank" title="压力测试工具-并发工具 - ">压力测试工具-并发工具</a></li><li class="indent"><a href="http://www.phpjm.net/" target="_blank" title="PHP在线加密平台 - ">PHP在线加密平台</a></li><li class="indent"><a href="http://qianqianqian.sinaapp.com/music/index.html" target="_blank" title="html5音乐盒 Chrome only - ">html5音乐盒 Chrome only</a></li><li class="indent"><a href="https://www.centos.bz/" target="_blank" title="Linux服务器运维日志 - ">Linux服务器运维日志</a></li><li class="indent"><a href="http://cidian.youdao.com/huaci/" target="_blank" title="有道划词翻译-方便。 - 主要是方便下载软件之用。">有道划词翻译-方便。</a></li><li class="indent"><a href="http://www.jetbrains.com/upsource/" target="_blank" title="upsource-Repository Browsing and Code Review - ">upsource-Repository Browsing and Code Review</a></li><li class="indent"><a href="http://www.i7086.com/" target="_blank" title="七零八落 | 交流生活的点滴与收获 - ">七零八落 | 交流生活的点滴与收获</a></li><li class="indent"><a href="http://barcode.cnaidc.com/html/BCGcode39.php" target="_blank" title="条码生成器 - ">条码生成器</a></li><li class="indent"><a href="http://blog.chinaunix.net/uid/26722078.html" target="_blank" title="iWonder_的技术博客 - ">iWonder_的技术博客</a></li><li class="indent"><a href="http://service.bj.10086.cn/poffice/jsp/package/llzc/index.jsp" target="_blank" title="中移动流量直充入口 - ">中移动流量直充入口</a></li><li class="indent"><a href="http://c.biancheng.net/" target="_blank" title="C语言中文网 - ">C语言中文网</a></li><li><strong>最近书籍</strong></li><li class="indent"><a href="http://www.bokee.net/" target="_blank" title="博客日报 | 企博网 - ">博客日报 | 企博网</a></li><li class="indent"><a href="http://v.ifeng.com/history/wenhuashidian/201203/69058d49-373d-45e7-b30e-9f84c1973f8d.shtml" target="_blank" title="国运1909:清帝国的改革突围 - ">国运1909:清帝国的改革突围 </a></li><li><strong>设计装潢</strong></li><li class="indent"><a href="http://www.nipic.com/" target="_blank" title="昵图网 - ">昵图网</a></li><li class="indent"><a href="http://www.scarlettchou.com/" target="_blank" title="旅美画家周心怡官网[台湾] - ">旅美画家周心怡官网[台湾]</a></li><li><strong>社区休闲</strong></li><li><strong>经典歌曲</strong></li><li class="indent"><a href="http://blog.sina.com.cn/u/1275466124" target="_blank" title=" 大庆潘俊 -歌曲 - "> 大庆潘俊 -歌曲</a></li><li class="indent"><a href="http://www.36dj.com/" target="_blank" title="DJ音乐 - ">DJ音乐</a></li><li class="indent"><a href="http://g.top100.cn/16667639/html/player.html?id=sys:star_recc:top100_star_chenkun&type=playlist&autoplay=true#loaded" target="_blank" title="Better Man - ">Better Man</a></li><li class="indent"><a href="http://y.qq.com/webplayer/p.html?songList=%5B%5D&type=1&vip=-1&userName=&ipad=0&from=0&singerid=0&encodedUIN=&u=290036834&k=178026931" target="_blank" title="蓝色的D调(QQ音乐) - ">蓝色的D调(QQ音乐)</a></li><li class="indent"><a href="http://ctc.qzs.qq.com/qzone/v6/newlimit/index.html?s=1&uin=290036834&jump=http%3a%2f%2fuser.qzone.qq.com%2f290036834%3fptlang%3d2052" target="_blank" title="Happy蓝色D调-Qzone - ">Happy蓝色D调-Qzone</a></li><li class="indent"><a href="http://user.qzone.qq.com/290036834/photo/V14dCazE1F7syl#!app=305&via=QZ.HashRefresh" target="_blank" title="Happy蓝色D调-QQ音乐 - ">Happy蓝色D调-QQ音乐</a></li><li class="indent"><a href="http://blog.sina.com.cn/taibaishu" target="_blank" title=" 鼠界的战神-陈鑫鑫的博客-歌列表好听 - "> 鼠界的战神-陈鑫鑫的博客-歌列表好听</a></li><li><strong>世界报纸</strong></li><li class="indent"><a href="http://www.ifeng.com" target="_blank" title="凤凰网 - ">凤凰网</a></li><li><strong>手机软件</strong></li><li><strong>杂七杂八</strong></li><li class="indent"><a href="http://www.qihoo.com/wenda.php?kw=%D1%F8%BC%A6%BB%A7+%D0%C4%B5%C3+%BE%AD%B5%E4&do=search&noq=q&page=1" target="_blank" title="养鸡户 心得 经典 - ">养鸡户 心得 经典</a></li><li class="indent"><a href="http://www.macrolong.com/weblog/read.php/184.htm" target="_blank" title="本站模版来源 - ">本站模版来源</a></li><li class="indent"><a href="http://map.baidu.com/subways/index.html?c=beijing" target="_blank" title="北京地铁 - ">北京地铁 </a></li><li class="indent"><a href="http://edu.sina.com.cn/official/zhiwei/" target="_blank" title="国家公务员职位查询 - ">国家公务员职位查询</a></li><li class="indent"><a href="http://www.kaixin001.com/ifeng" target="_blank" title="凤凰入住开心网 - ">凤凰入住开心网</a></li><li class="indent"><a href="http://blog.sina.com.cn/yilinzazhi" target="_blank" title="《意林》杂志的BLOG - ">《意林》杂志的BLOG</a></li><li class="indent"><a href="http://www.chinabreed.com/" target="_blank" title="中国养殖网 - ">中国养殖网</a></li><li class="indent"><a href="http://mzj.cqfd.gov.cn/" target="_blank" title="重庆市丰都县民政局 - ">重庆市丰都县民政局</a></li><li class="indent"><a href="http://user.qzone.qq.com/511203204?ptlang=2052" target="_blank" title="前房东家相册 - ">前房东家相册</a></li><li class="indent"><a href="http://www.kiees.cn/ckd/" target="_blank" title="申通快递公司全国网点( - ">申通快递公司全国网点(</a></li><li class="indent"><a href="http://www.yangji.com/" target="_blank" title="养鸡网 - ">养鸡网</a></li><li class="indent"><a href="http://blog.sina.com.cn/gallopsbj" target="_blank" title="驰骋畜禽疫病防控技术研究 - ">驰骋畜禽疫病防控技术研究</a></li><li class="indent"><a href="http://code.google.com/p/zjj123/downloads/detail?name=tqq.zip&can=2&q=" target="_blank" title="Tqq template for wordpress - ">Tqq template for wordpress</a></li><li class="indent"><a href="http://www.zgqd.cn/" target="_blank" title="中国禽蛋信息网 - ">中国禽蛋信息网</a></li><li class="indent"><a href="http://www.ting56.com/Audio-books/1126.html" target="_blank" title="货币战争MP3 - ">货币战争MP3</a></li><li class="indent"><a href="http://www.damotou.com/index.php" target="_blank" title="在线ICON图标转换工具 - ">在线ICON图标转换工具 </a></li><li class="indent"><a href="http://www.c-ps.net/trade/content/2009/9/12793.html" target="_blank" title="吉禄信息发布系统 - ">吉禄信息发布系统</a></li><li class="indent"><a href="http://games.sina.com.cn/downgames/demo/pcgames/2010-10-25/1453127878.shtml" target="_blank" title="Sina游戏搜索 - ">Sina游戏搜索</a></li><li class="indent"><a href="http://www.4006.cn/Lucktest.aspx" target="_blank" title="400电话吉凶查询 - ">400电话吉凶查询</a></li><li><strong>手机软件</strong></li><li class="indent"><a href="http://www.imobile.com.cn" target="_blank" title="手机之家签名 - ">手机之家签名</a></li><li><strong>我的大学</strong></li><li class="indent"><a href="http://www.mucbbs.com/" target="_blank" title="民大论坛 - ">民大论坛</a></li><li><strong>朋友博客</strong></li><li class="indent"><a href="http://blog.sina.com.cn/1238959473gaomingyue" target="_blank" title="夏日里的萨克斯风 - 萨克斯乐手月月">夏日里的萨克斯风</a></li><li class="indent"><a href="http://www.kaixin001.com/home/?uid=5097538" target="_blank" title="沈俊强[开心网] - ">沈俊强[开心网]</a></li><li class="indent"><a href="http://nan-nan-chen.blog.sohu.com/" target="_blank" title="nan-nan-chen - ">nan-nan-chen</a></li><li class="indent"><a href="http://blog.sina.com.cn/u/1305619077" target="_blank" title="小飞猪的追梦人生[前同事王芳的博客] - ">小飞猪的追梦人生[前同事王芳的博客]</a></li><li><strong>黑客安全</strong></li><li class="indent"><a href="http://www.kaba999.com" target="_blank" title="卡巴斯基 - 卡巴斯基2009中文网">卡巴斯基</a></li><li><strong>教育培训</strong></li><li><strong>常用软件</strong></li><li class="indent"><a href="http://mirrors.sohu.com/" target="_blank" title="搜狐开源镜像 - ">搜狐开源镜像</a></li><li class="indent"><a href="http://down.tech.sina.com.cn/page/9351.html" target="_blank" title="极点五笔 7.0 - ">极点五笔 7.0</a></li><li class="indent"><a href="http://httpd.apache.org/download.cgi" target="_blank" title="Apache_DownLoad - ">Apache_DownLoad</a></li><li class="indent"><a href="http://www.ylmf.org/" target="_blank" title="雨林木风操作系统 - ubuntu改为xp">雨林木风操作系统</a></li><li class="indent"><a href="http://www.weather.com.cn/html/weather/101280601.shtml" target="_blank" title="天气预报 - ">天气预报</a></li><li class="indent"><a href="http://think.lenovo.com.cn/support/driver/driversdownlist.aspx?categoryid=20101&osid=234&description=&count=2&mcid=20101&categoryidThreeNum=" target="_blank" title="联想T60P驱动下载 - ">联想T60P驱动下载</a></li><li class="indent"><a href="http://weather.news.sina.com.cn/" target="_blank" title="Sina天气预报 - ">Sina天气预报</a></li><li class="indent"><a href="http://firestats.cc/wiki/Download" target="_blank" title="FireStats - ">FireStats</a></li><li class="indent"><a href="http://www.appinn.com/" target="_blank" title="小众软件 - ">小众软件</a></li><li class="indent"><a href="星期八's Blog" target="_blank" title="http://www.keygen.cn/default.asp - ">http://www.keygen.cn/default.asp</a></li><li class="indent"><a href="http://ems183.cn/ems-china.php" target="_blank" title="邮局旗下E邮宝快递查询 - ">邮局旗下E邮宝快递查询</a></li><li class="indent"><a href="http://www.baidu.com/s?wd=%C5%A9%C0%FA&rsv_bp=0&rsv_spt=3&inputT=2840" target="_blank" title="农历查询/阴历查询 - ">农历查询/阴历查询</a></li><li class="indent"><a href="http://www.wenjian.cn/freeware/largestfiles.html" target="_blank" title="最大文件查找器(Largest Files Finder) - ">最大文件查找器(Largest Files Finder)</a></li><li class="indent"><a href="http://mobile.9om.com/186236/18623687217.html" target="_blank" title="号令天下(手机号吉凶查询) - ">号令天下(手机号吉凶查询)</a></li><li class="indent"><a href="http://www.emlog.net/template/470" target="_blank" title="emlog博客cms听说很是快负载低 - ">emlog博客cms听说很是快负载低</a></li><li class="indent"><a href="http://www.emlog.net/template/354" target="_blank" title="emlog仿虎嗅网模板 - ">emlog仿虎嗅网模板</a></li><li class="indent"><a href="http://ui4app.com/" target="_blank" title="ui4app - ">ui4app</a></li><li><strong>好友网址</strong></li><li class="indent"><a href="http://www.zeuux.com/blog/content/1953/" target="_blank" title="linux远程管理的屠龙刀 - ">linux远程管理的屠龙刀</a></li><li><strong>口袋技巧</strong></li><li><strong>VmwareDevelop</strong></li><li><strong>旅行酒店</strong></li><li class="indent"><a href="http://www.qunar.com/?kwid=305077&cooperate=google42&kw=%E5%8E%BB%E5%93%AA%E5%84%BF&aduse=4275953434" target="_blank" title="去哪儿 - ">去哪儿</a></li><li class="indent"><a href="http://airport.csair.com/cki/app" target="_blank" title="网上登机牌 - ">网上登机牌</a></li><li class="indent"><a href="http://qunar.piaomoo.com/tts/user/login.jsp" target="_blank" title="票谋天下 - ">票谋天下</a></li><li class="indent"><a href="http://airport.csair.com/cki/app" target="_blank" title="南航等级牌网上办理 - ">南航等级牌网上办理</a></li><li><strong>友情店铺</strong></li><li><strong>快递网站</strong></li><li class="indent"><a href="http://www.sto.cn/" target="_blank" title="申通快递 - ">申通快递</a></li><li><strong>房产股票</strong></li><li class="indent"><a href="http://blog.sina.com.cn/s/blog_64474dd10100mhpz.html" target="_blank" title=" 股怪 9233 - "> 股怪 9233</a></li><li class="indent"><a href="http://blog.sina.com.cn/byds777" target="_blank" title="博弈大师的博客 - ">博弈大师的博客</a></li><li class="indent"><a href="http://house.baidu.com/bj/map/#centerx=116.188526&centery=40.026247&zoomlv=13&dt=1" target="_blank" title="百度地图之北京周边地区售房 - ">百度地图之北京周边地区售房</a></li><li class="indent"><a href="http://user.qzone.qq.com/172283506/blog/1302482009" target="_blank" title="兰博天使 - ">兰博天使</a></li><li class="indent"><a href="http://blog.sina.com.cn/chenqian" target="_blank" title="牛刀的Sina博客 - ">牛刀的Sina博客</a></li><li class="indent"><a href="http://ditu.google.cn/maps?um=1&ie=UTF-8&q=%E9%87%91%E5%9C%B0%E6%A0%BC%E6%9E%97%E5%B0%8F%E9%95%87&fb=1&hq=%E9%87%91%E5%9C%B0%E6%A0%BC%E6%9E%97%E5%B0%8F%E9%95%87&hnear=0x35f05296e7142cb9:0xb9625620af0fa98a,%E5%8C%97%E4%BA%AC%E5%B8%82&cid=0,0,577966262439604673&sa=X&ei=Ny3SUZ2VIovakgWM6YCwAQ&ved=0CLABEPwSMAI" target="_blank" title="Google卫星地图之金地格林格林 - ">Google卫星地图之金地格林格林</a></li><li><strong>美女私访</strong></li><li class="indent"><a href="http://user.qzone.qq.com/723186093/blog/1298208912" target="_blank" title="模特经纪人王平 - ">模特经纪人王平</a></li><li class="indent"><a href="http://www.gtdlife.cn/2011/2250/high-thinking/" target="_blank" title="高效思维方式 - ">高效思维方式</a></li><li class="indent"><a href="http://blog.sina.com.cn/s/blog_5365853201017ulp.html" target="_blank" title="喷血自拍_婉约云儿 - ">喷血自拍_婉约云儿</a></li><li class="indent"><a href="http://club.kdnet.net/dispbbs.asp?boardid=33&id=7469973&page=1&1=1#7469973" target="_blank" title="中法混血美女 - ">中法混血美女</a></li><li><strong>杂七杂八</strong></li><li><strong>行星摄色</strong></li><li class="indent"><a href="http://user.qzone.qq.com/84001981/blog/1312899950" target="_blank" title="摄影师罗嘉 - ">摄影师罗嘉</a></li><li class="indent"><a href="http://bbs.fengniao.com/forum/1498730.html" target="_blank" title="旅行摄影 - ">旅行摄影</a></li><li><strong>好友文章</strong></li><li class="indent"><a href="http://user.qzone.qq.com/17687363/blog/1313374739" target="_blank" title="Scottjiang朋友博客 - ">Scottjiang朋友博客</a></li><li><strong>Python学习</strong></li><li><strong>翻墙代理</strong></li><li><strong>前端JS</strong></li><li><strong>IT独孤论剑</strong></li><li><strong>Nginx相关</strong></li><li><strong>Epoll_Server</strong></li><li><strong>图片处理</strong></li><li><strong>DiscuzX研究</strong></li><li class="indent"><a href="http://www.yeei.cn/forum-38-1.html" target="_blank" title="Discuz模板界面 - ">Discuz模板界面</a></li><li><strong>FastCgi</strong></li><li><strong>Flash&图表</strong></li><li><strong>CentOS服务器</strong></li><li><strong>系统抓包</strong></li><li><strong>前端优化</strong></li><li class="indent"><a href="http://blog.sina.com.cn/s/blog_482611850100xpb1.html" target="_blank" title="从微博的改版谈网页重构 - ">从微博的改版谈网页重构</a></li><li><strong>云计算相关</strong></li><li class="indent"><a href="http://www.blogjava.net/hengheng123456789/archive/2011/01/04/342258.html" target="_blank" title="HDFS+MapReduce+Hive+HBase - ">HDFS+MapReduce+Hive+HBase</a></li><li><strong>斗争哲学</strong></li><li class="indent"><a href="http://jishi.cntv.cn/people/maozedongyongbingzhenrushen/classpage/video/20100116/101728.shtml" target="_blank" title="毛泽东著名的“十大军事原则” - ">毛泽东著名的“十大军事原则”</a></li><li><strong>全景图片</strong></li><li class="indent"><a href="http://www.sevilla111.com/default_en.htm" target="_blank" title="全景图片 - ">全景图片</a></li><li><strong>小众软件</strong></li><li><strong>桌面软件</strong></li><li><strong>Jquery控件</strong></li><li class="indent"><a href="http://www.blueidea.com/tech/web/2009/6944_2.asp" target="_blank" title="使用jQuery改进文件上传控件 - ">使用jQuery改进文件上传控件</a></li><li class="indent"><a href="http://blog.brandonaaron.net/2007/08/19/new-plugin-live-query/" target="_blank" title="使用Jquery的鲜活绑定(lively-ness),解决“新添加的元素,事件不可用”的问题 - ">使用Jquery的鲜活绑定(lively-ness),解决“新添加的元素,事件不可用”的问题</a></li><li><strong>Standard C语言</strong></li><li><strong>C51单片机</strong></li><li><strong>Linux内核</strong></li><li><strong>Centos下载</strong></li><li><strong>Json_Tools</strong></li><li><strong>编辑器</strong></li><li class="indent"><a href="http://www.cnblogs.com/kingkoo/archive/2008/10/24/1318912.html" target="_blank" title="EditPlus自动完成/配置文件 - ">EditPlus自动完成/配置文件</a></li><li class="indent"><a href="http://www.sublimetext.com/" target="_blank" title="sublimetext - ">sublimetext</a></li><li class="indent"><a href="http://xheditor.com/" target="_blank" title="xhEditor开源HTML编辑器(Jquery) - ">xhEditor开源HTML编辑器(Jquery)</a></li><li><strong>Linux博客</strong></li><li class="indent"><a href="http://www.cyberspice.org.uk/" target="_blank" title="Cyberspice's Web Site - ">Cyberspice's Web Site</a></li><li><strong>aptana-eclipse-plugin</strong></li><li><strong>版本控制</strong></li><li><strong>GTD任务管理</strong></li><li class="indent"><a href="http://doit.im" target="_blank" title="最佳免费GTD任务管理软件 Doit.im - ">最佳免费GTD任务管理软件 Doit.im</a></li><li><strong>Linux下C++调试</strong></li><li><strong>ExtJs相关</strong></li><li class="indent"><a href="http://wenku.baidu.com/search?word=%C6%DF%CC%EC%D1%A7%BB%E1extjs&lm=0&od=0" target="_blank" title="七天学会extjs - ">七天学会extjs</a></li><li class="indent"><a href="http://www.cnblogs.com/phinecos/archive/2009/10/08/1578986.html" target="_blank" title="ExtJS中TreePanel的使用 - ">ExtJS中TreePanel的使用</a></li><li><strong>文体生活</strong></li><li><strong>PID算法研究</strong></li><li class="indent"><a href="http://wenku.baidu.com/view/92dfa0000740be1e650e9ae4.html?from=related&hasrec=1" target="_blank" title="温控PID算法 - ">温控PID算法 </a></li><li><strong>RPC远程过程调用(多线程Etc)</strong></li><li class="indent"><a href="http://blog.chinaunix.net/space.php?uid=20481436&do=blog&cuid=726114" target="_blank" title="linux下rpc的多线程实现 - ">linux下rpc的多线程实现</a></li><li><strong>RPC远程过程调用(多线程Etc)</strong></li><li><strong>前端工程师的八个利器</strong></li><li><strong>学历认证</strong></li><li><strong>Flash/Flex及控件</strong></li><li><strong>Editplus技巧集锦</strong></li><li class="indent"><a href="http://www.cnblogs.com/JustinYoung/archive/2008/01/14/editplus-skills.html" target="_blank" title="使用EditPlus技巧,提高工作效率 - ">使用EditPlus技巧,提高工作效率</a></li><li><strong>Python及模块</strong></li><li><strong>coreseek引擎</strong></li><li><strong>Lamp架构及软件</strong></li><li class="indent"><a href="http://directory.apache.org/" target="_blank" title="Apache Directory™ Project - ">Apache Directory™ Project</a></li><li><strong>Apache开源Project</strong></li><li><strong>快递包裹查询</strong></li><li class="indent"><a href="http://post.bm8.com.cn/index.php" target="_blank" title="中国邮政平邮包裹查询 - ">中国邮政平邮包裹查询</a></li><li><strong>语言翻译</strong></li><li><strong>SEO排名及优化</strong></li><li><strong>运营及性能</strong></li><li class="indent"><a href="http://velocity.oreilly.com.cn/2011/index.php?func=slidesvideos" target="_blank" title="Web性能和运维大会 - ">Web性能和运维大会</a></li><li><strong>版本控制</strong></li><li><strong> 备案查询</strong></li><li><strong>Web数据库</strong></li><li><strong>编程工具</strong></li><li class="indent"><a href="http://bbs.chinaunix.net/thread-3619603-1-1.html" target="_blank" title="EditPlus插件OpenCTags使用在EditPlus的使用 - ">EditPlus插件OpenCTags使用在EditPlus的使用</a></li><li class="indent"><a href="http://www.jetbrains.com/phpstorm/" target="_blank" title="phpstorm - ">phpstorm</a></li><li><strong>古今典籍</strong></li><li class="indent"><a href="http://www.51zzl.com/jiaoyu/sjs/index.asp" target="_blank" title="《商君书》全文及翻译 - ">《商君书》全文及翻译</a></li><li><strong>Firefox常用插件</strong></li><li><strong>chrome常用插件</strong></li><li><strong>经济房产</strong></li><li class="indent"><a href="http://www.caogen.com/blog/index.aspx?ID=117" target="_blank" title=" 向松祚 - "> 向松祚</a></li><li><strong>版本控制</strong></li><li class="indent"><a href="http://www.iusesvn.com/" target="_blank" title="iusesvn - ">iusesvn</a></li><li><strong>开源优秀软件</strong></li><li class="indent"><a href="http://zookeeper.apache.org/" target="_blank" title="zookeeper - ">zookeeper</a></li><li class="indent"><a href="http://jyywiki.cn/" target="_blank" title="Yanyan's Wiki(蒋炎岩南京大学) - ">Yanyan's Wiki(蒋炎岩南京大学)</a></li><li><strong>大学教育决策</strong></li><li class="indent"><a href="http://www.doyoung.net/audio/LIVE/index.html" target="_blank" title="关于大学那些事 - ">关于大学那些事</a></li><li><strong>领导管理</strong></li><li><strong>创新产品</strong></li><li class="indent"><a href="http://www.doyoung.net/" target="_blank" title="杜洋工作室 DoYoung Studio - ">杜洋工作室 DoYoung Studio</a></li><li class="indent"><a href="http://www.xunsearch.com/" target="_blank" title="迅搜(xunsearch) - 开源免费中文全文搜索引擎 - ">迅搜(xunsearch) - 开源免费中文全文搜索引擎</a></li><li class="indent"><a href="http://www.loongsonclub.com/" target="_blank" title="龙芯俱乐部-石南兄弟 - ">龙芯俱乐部-石南兄弟</a></li><li class="indent"><a href="http://www.mockplus.cn/design" target="_blank" title="产品原型设计web工具 - ">产品原型设计web工具</a></li><li class="indent"><a href="http://kankan.baidu.com/a=0" target="_blank" title="百度云直播 - ">百度云直播</a></li><li class="indent"><a href="https://www.particle.io/?redirected=true" target="_blank" title="Spark Photon Wifi - ">Spark Photon Wifi</a></li><li><strong>百家讲坛</strong></li><li class="indent"><a href="http://kejiao.cntv.cn/bjjt/classpage/video/20120427/101157.shtml" target="_blank" title="大隋风云[下部] - ">大隋风云[下部] </a></li><li><strong>IT界网站</strong></li><li class="indent"><a href="http://www.donews.com" target="_blank" title="DoNews-IT门户 - ">DoNews-IT门户</a></li><li class="indent"><a href="http://www.techweb.com.cn/" target="_blank" title="TechWeb.com.cn - 新媒体、新技术 - ">TechWeb.com.cn - 新媒体、新技术</a></li><li><strong>教育励志</strong></li><li><strong>域名相关</strong></li><li class="indent"><a href="http://dcp.xinnet.com/domain/cert.do?method=listCert&enDomainName=justwinit.cn" target="_blank" title="我的域名证书 - ">我的域名证书</a></li><li class="indent"><a href="http://www.juming.com/newcha/" target="_blank" title="域名删除时间查询(域名到期) - ">域名删除时间查询(域名到期)</a></li><li><strong>向东牛人</strong></li><li class="indent"><a href="http://www.thss.tsinghua.edu.cn/publish/soft/3641/2010/20101208151118534747687/20101208151118534747687_.html" target="_blank" title="清华大学软件学院向东 - ">清华大学软件学院向东</a></li><li><strong>管理日志</strong></li><li class="indent"><a href="https://www.zhihu.com/people/pmpyuan-lao-shi" target="_blank" title="项目经理老原 - 知乎 - ">项目经理老原 - 知乎</a></li><li class="indent"><a href="https://zhuanlan.zhihu.com/p/551497536" target="_blank" title="告诉你,项目管理就用这一页纸 - ">告诉你,项目管理就用这一页纸</a></li><li><strong>爱写作的IT人</strong></li><li class="indent"><a href="http://blog.sina.com.cn/azhuljw" target="_blank" title="阿朱吕建伟 - ">阿朱吕建伟</a></li><li><strong>PHP手册</strong></li><li><strong>商业模式</strong></li><li class="indent"><a href="http://www.geekpark.net" target="_blank" title="极客公园 - ">极客公园</a></li><li class="indent"><a href="www.xcf.cn/syms/" target="_blank" title="新财富杂志官方网 - ">新财富杂志官方网</a></li><li><strong>PHP框架</strong></li><li class="indent"><a href="http://kohanaframework.org/" target="_blank" title="kohanaframework - ">kohanaframework</a></li><li><strong>Vps链接(非广告)</strong></li><li><strong>PHP加密</strong></li><li><strong>FastCGI报文</strong></li><li class="indent"><a href="http://xiaoxia.org/2009/10/05/fastcgi-protocol-analysis/" target="_blank" title="FastCGI协议报文的分析 - ">FastCGI协议报文的分析</a></li><li><strong> Android开发</strong></li><li><strong>记事安排</strong></li><li><strong>记事安排</strong></li><li><strong>物流快递</strong></li><li><strong>PHP技术集锦</strong></li><li class="indent"><a href="http://pecl.php.net/" target="_blank" title="PHP官方扩展 - ">PHP官方扩展</a></li><li><strong>中国家禽</strong></li><li><strong>网页工具</strong></li><li><strong>孵化鸡产品</strong></li><li class="indent"><a href="http://www.fuhuaji.com/znwdkzq05a.htm" target="_blank" title="孵化机【靠谱】 - ">孵化机【靠谱】</a></li><li><strong>英语阅读</strong></li><li><strong>操作系统</strong></li><li><strong>PHP高级高效运用</strong></li><li class="indent"><a href="http://libevent.org/" target="_blank" title="PHp_libevent_Extension - ">PHp_libevent_Extension</a></li><li><strong>备份还原</strong></li><li class="indent"><a href="http://doshome.com/yj/" target="_blank" title="一键GHOST官网 - ">一键GHOST官网</a></li><li><strong>衍生阅读</strong></li><li><strong>医学典藏</strong></li><li class="indent"><a href="http://www.youku.com/playlist_show/id_3302754.html" target="_blank" title="《金匮要略》 - ">《金匮要略》</a></li><li><strong>环境天气</strong></li><li><strong>Html编辑器</strong></li><li class="indent"><a href="http://xheditor.com/" target="_blank" title="xhEditor:基于jQuery可视化HTML编辑器 - ">xhEditor:基于jQuery可视化HTML编辑器</a></li><li><strong>产品开发管理软件</strong></li><li><strong>公交列车飞机线路时间航班查询</strong></li><li class="indent"><a href="http://www.mapbar.com/" target="_blank" title="北京公交如106线路查询 - ">北京公交如106线路查询</a></li><li><strong>地图街景</strong></li><li><strong>Lamp套件</strong></li><li class="indent"><a href="http://kohanaframework.org/" target="_blank" title="kohanaframework-KOPHP - ">kohanaframework-KOPHP</a></li><li class="indent"><a href="https://oneinstack.com/" target="_blank" title="CentOS下的lnmp套件 - ">CentOS下的lnmp套件</a></li><li><strong>PHP扩展模块</strong></li><li class="indent"><a href="https://github.com/krakjoe/pthreads" target="_blank" title="krakjoe / pthreads - ">krakjoe / pthreads</a></li><li class="indent"><a href="https://github.com/shenzhe/zphp" target="_blank" title=" zphp - zphp是一个极轻的的,专用于游戏(社交,网页,移动)的服务器端开发框架.提供高性能实时通信方案。"> zphp</a></li><li class="indent"><a href="https://github.com/matyhtf/swoole" target="_blank" title="Node.js的颠覆者:PHP的Swoole扩展 - Swoole是一个PHP的C扩展,可用来开发PHP的高性能高并发TCP/UDP Server。Swoole的网络IO部分基于epoll/kqueue事件循环,是全异步非阻塞的。 业务逻辑部分使用多进程同步阻塞方式来运行。这样既保证了Server能够应对高并发和大量TCP连接。又保证业务代码仍然可以简单的编写。">Node.js的颠覆者:PHP的Swoole扩展</a></li><li class="indent"><a href="https://launchpad.net/libmemcached/+download" target="_blank" title="libmemcached DownLoad - ">libmemcached DownLoad</a></li><li><strong>缺陷管理软件</strong></li><li class="indent"><a href="http://www.mantisbt.org/" target="_blank" title="mantisbt - ">mantisbt</a></li><li><strong>创新框架</strong></li><li class="indent"><a href="http://gwan.ch/" target="_blank" title="gwan - ">gwan</a></li><li class="indent"><a href="http://tengine.taobao.org/" target="_blank" title="tengine - ">tengine</a></li><li class="indent"><a href="http://linkeddestiny.lofter.com/ " target="_blank" title="星空——Swoole源码学习个人博客 - 讲解Swoole源码的,作为swoole的顾问,特给加上友情链接。">星空——Swoole源码学习个人博客</a></li><li class="indent"><a href="https://github.com/LinkedDestiny/swoole-src-analysis" target="_blank" title="php swoole扩展的源码学习记录 - ">php swoole扩展的源码学习记录</a></li><li class="indent"><a href="http://demo.geekso.com/qrcode/current/tools" target="_blank" title="二维码条型码图片识别工具 - ">二维码条型码图片识别工具</a></li><li class="indent"><a href="http://dcloud.io/" target="_blank" title="Html5 编辑器--飞一样的提示功能 - ">Html5 编辑器--飞一样的提示功能</a></li><li class="indent"><a href="https://github.com/tencent-php/tsf" target="_blank" title="基于Swoole+PHP Generator实现的协程 - ">基于Swoole+PHP Generator实现的协程</a></li><li class="indent"><a href="http://blog.chedushi.com/archives/8026" target="_blank" title="Beanstalkd一个高性能分布式内存队列系统 - ">Beanstalkd一个高性能分布式内存队列系统</a></li><li class="indent"><a href="http://www.jiathis.com/" target="_blank" title="分享按钮,同时支持PC端和移动端。 - ">分享按钮,同时支持PC端和移动端。</a></li><li class="indent"><a href="http://c.youdao.com/test/calculator/pc.html" target="_blank" title="超级计算器 - ">超级计算器</a></li><li class="indent"><a href="https://www.soapui.org/" target="_blank" title="soapui-调试PHP-SOAP的UI工具 - ">soapui-调试PHP-SOAP的UI工具</a></li><li class="indent"><a href="https://github.com/hprose/hprose-php/wiki" target="_blank" title="Hprose for PHP 用户手册 - ">Hprose for PHP 用户手册</a></li><li class="indent"><a href="http://book.open-falcon.org/zh/index.html" target="_blank" title="Open-Falcon - ">Open-Falcon</a></li><li class="indent"><a href="https://bugly.qq.com/v2/report" target="_blank" title="移动开发者提供专业的异常上报 - ">移动开发者提供专业的异常上报</a></li><li class="indent"><a href="https://github.com/qieangel2013/dfs" target="_blank" title="swoole和inotify的分布式文件服务器框架 - ">swoole和inotify的分布式文件服务器框架</a></li><li class="indent"><a href="http://naotu.baidu.com/file/86b7e8619255ab6e74bd75d4a8e32c68" target="_blank" title="百度脑图 - ">百度脑图</a></li><li class="indent"><a href="http://www.myleftstudio.com/" target="_blank" title="Phalcon7 让一切变得简单!¶ - ">Phalcon7 让一切变得简单!¶</a></li><li class="indent"><a href="https://www.oschina.net/p/seaslog" target="_blank" title="seaslog-PHP的高性能日志扩展 - ">seaslog-PHP的高性能日志扩展</a></li><li class="indent"><a href="https://github.com/lizhichao/one-demo/blob/master/README.md#%E5%90%84%E7%A7%8D%E6%B7%B7%E5%90%88%E5%8D%8F%E8%AE%AE%E4%B9%8B%E9%97%B4%E7%9B%B8%E4%BA%92%E9%80%9A%E8%AE%AF%E5%88%97%E5%AD%90" target="_blank" title="SwooleOne框架-混合协议通讯 - ">SwooleOne框架-混合协议通讯</a></li><li class="indent"><a href="https://javascript.ctolib.com/swlib-saber.html#articleHeader19" target="_blank" title="Saber, 高性能高可用HTTP客户端 - Swoole人性化组件库 - ">Saber, 高性能高可用HTTP客户端 - Swoole人性化组件库</a></li><li class="indent"><a href="https://hyperf.wiki/#/zh/coroutine" target="_blank" title="Hyperf - Hyperspeed + Flexibility = Hyperf,从名字上我们就将 超高速 和 灵活性 作为 Hyperf 的基因。">Hyperf</a></li><li class="indent"><a href="https://github.com/idevz/k8s-start/blob/master/README-zh.md" target="_blank" title="k8s-start - ">k8s-start</a></li><li class="indent"><a href="https://github.com/taosdata/TDengine" target="_blank" title="TDengine - ">TDengine</a></li><li class="indent"><a href="https://www.finereport.com/" target="_blank" title="finereport-大屏报表 - 搞点监控放到大屏电视上有用">finereport-大屏报表</a></li><li class="indent"><a href="https://gitee.com/yurunsoft/imi-naive-course" target="_blank" title="imiphp框架免费课代码 - ">imiphp框架免费课代码</a></li><li class="indent"><a href="https://rpmfind.net/linux/rpm2html/search.php?query=libc.so.6%28GLIBC_2.18%29&submit=Search+...&system=&arch=" target="_blank" title="centos 动态链接版本号对应rpm包反查 - ">centos 动态链接版本号对应rpm包反查</a></li><li class="indent"><a href="https://fritzing.org/" target="_blank" title="树莓派(Arduino)仿真软件 - ">树莓派(Arduino)仿真软件</a></li><li class="indent"><a href="https://qingg.im/mac/" target="_blank" title="清歌输入法Mac版 - ">清歌输入法Mac版</a></li><li class="indent"><a href="https://github.com/xielei/swoole-worker/tree/v1/docs/zh-CN" target="_blank" title="swoole-worker - 这个架构和workerman有些像">swoole-worker</a></li><li class="indent"><a href="https://github.com/heiyeluren/heiyeluren-tools/tree/master/linux-env-init" target="_blank" title="适合百万并发高性能单机Linux环境配置脚本 v1.0 - ">适合百万并发高性能单机Linux环境配置脚本 v1.0</a></li><li><strong>经典书籍</strong></li><li class="indent"><a href="http://nteswjq.blog.163.com/" target="_blank" title="段永平的博客 - ">段永平的博客</a></li><li><strong>PHP高级编程群</strong></li><li><strong>日常事务</strong></li><li><strong>近期阅读</strong></li><li class="indent"><a href="https://mirrors.cnnic.cn/help/centos/" target="_blank" title="清华大学CentOS镜像仓库 - ">清华大学CentOS镜像仓库</a></li><li><strong>黑客攻防</strong></li><li class="indent"><a href="http://www.pediy.com/sourcecode/disassemblers.htm" target="_blank" title="加密与解密-看雪学院 - ">加密与解密-看雪学院</a></li><li class="indent"><a href="http://www.xici.net/u5215397/" target="_blank" title="小榕的角落 - ">小榕的角落</a></li><li class="indent"><a href="http://blog.knownsec.com/" target="_blank" title="更好更安全的互联网 - ">更好更安全的互联网 </a></li><li><strong>网上商城</strong></li><li><strong>Swoole开发组</strong></li><li class="indent"><a href="https://github.com/matyhtf/websocket_tail" target="_blank" title="websocket_tail - ">websocket_tail</a></li><li class="indent"><a href="http://blog.sina.com.cn/s/blog_9eaa0f400102v9fd.html" target="_blank" title="php-cp介绍 - 郭新华的博客">php-cp介绍</a></li><li class="indent"><a href="https://zhuanlan.zhihu.com/swoole" target="_blank" title="swoole 知乎专栏,源码分析,对linux底层和c - ">swoole 知乎专栏,源码分析,对linux底层和c</a></li><li><strong>PHP网上培训学校</strong></li><li class="indent"><a href="https://bingxiong.vip/?p=17429" target="_blank" title="easySwoole文件上传高度封装 - ">easySwoole文件上传高度封装</a></li><li><strong>测试创新</strong></li><li class="indent"><a href="https://packagist.org/packages/hashids/hashids" target="_blank" title="HashID发生器PHP版 - ">HashID发生器PHP版</a></li><li><strong>PHP内核扩展及实践</strong></li><li><strong>CentOS镜像yum源</strong></li><li class="indent"><a href="http://mirrors.163.com/.help/centos.html" target="_blank" title="Centos 163 源 - ">Centos 163 源</a></li><li><strong>软硬创新</strong></li><li class="indent"><a href="https://github.com/xavier-chen/swoole_mqtt_php" target="_blank" title="swoole实现的mqtt协议 - ">swoole实现的mqtt协议</a></li></ul> </div> <div class="panel-bottom"> </div> </div> </div> <div id="innerSidebarTwo"> </div> <div id="innerSidebarFooter"> <!--global:{section_foot_components} <div id="processtime"></div>--> </div> </div> </div> <!-- sidebar end --> </div> </div> <div style="clear:both;"></div> <div id="footer"> <div id="innerFooter"> <div id="Copyrightinfo"> <div style="text-align:center">Copyright © 2006 - 2014 jackX. All Rights Reserved. Template By <a href="http://www.jackxiang.com" target="_blank">Jackxiang</a></div> <div style="text-align:center">[2007/3-2009/9]北京市海淀区中关村理想国际大厦18层 Address:Sina 18th floor Ideal plaza Zhongguancun Haidain Beijing 100080, P.R.China</div> <div style="text-align:center">[2009/9-2011/9]深圳南山腾讯大厦8楼 Address:Tencent Plaza High-tech One Road, Middle Zone, High-new Science & Technology Park, Nanshan Distrcit, Shenzhen City, Guangdong Province 518057, P.R. China</div> <div style="text-align:center">[2011/9-2012/9]深圳南山腾讯大厦旁大族激光大厦三楼 Address:Han's Building,Kejizhongyi Avenue, Hi-tech Pack,Nanshan District, Shenzhen City, Guangdong Province 518057, P.R.China</div> <div style="text-align:center">[2012/10-Now]北京海淀区西三环中路10号望海楼B座7层央视国际网络有限公司 Address:Seaview floor, Haidian District No.10,West Sanhuan Road,Beijing 100142, P.R.China</div> <div style="text-align:center">[2018/3-现在]北京市海淀区紫竹院南路20号外文文化创意园8号楼3层央视国际网络有限公司 Address:Building 8 of Foreign Language Cultural Creative Par ,No. 20, Zizhuyuan South Road, Haidian District, Beijing ,Beijing 100142, P.R.China</div><div style="text-align:center"><a href="https://beian.miit.gov.cn/">京ICP备14028286号</a></div> <div id="processtime"> </div> </div> </div> </div> </div> </div> <script type="text/javascript"> loadSidebar(); </script> </body> </html>