摘要: 我们深谙信息交流的价值,那网络中进程之间如何通信,如我们每天打开浏览器浏览网页时,浏览器的进程怎么与web服务器通信的?当你用QQ聊天时,QQ进程怎么与服务器或你好友所在的QQ进程通信?这些都得靠socket?那什么是socket?socket的类型有哪些?还有socket的基本函数,这些都是本文想 阅读全文
posted @ 2019-02-27 11:07 kong.software 阅读(800) 评论(0) 推荐(0)
摘要: if(!empty($site) && $site != 9){ $siteword = $site; $sql = 'SELECT c.id, c.name, c.related_page,c.suitable_siteids, REPLACE(suitable_siteids, 0, 12345 阅读全文
posted @ 2018-09-14 17:41 kong.software 阅读(125) 评论(0) 推荐(0)
摘要: $("input[name='suitable_siteid_edit[]']").each(function() { $(this).attr("checked",false); var va = $(this).val(); if(str.indexOf(va) != -1) $(this).a 阅读全文
posted @ 2018-09-14 17:40 kong.software 阅读(90) 评论(0) 推荐(0)
摘要: SELECT REPLACE(phone, SUBSTR(phone,4,4), 'XXXX') AS phone FROM smart_platform_db.users ; 阅读全文
posted @ 2018-09-14 17:09 kong.software 阅读(100) 评论(0) 推荐(0)
摘要: <script type="text/javascript"> var sel = document.getElementById("s"); sel.style.width = ((sel.offsetWidth < 100) ? '100' : ((sel.offsetWidth > 200)? 阅读全文
posted @ 2017-01-19 12:42 kong.software 阅读(111) 评论(0) 推荐(0)
摘要: Web browsers are probably the most widely used software. In this book I will explain how they work behind the scenes. We will see what happens when yo 阅读全文
posted @ 2016-11-08 11:47 kong.software 阅读(390) 评论(0) 推荐(0)
摘要: function checkEmpty(url,token) { var inputname = $("input[name='name']").val(); var inputschool = $("input[name='school']").val(); var inputmajor = $( 阅读全文
posted @ 2016-11-08 11:00 kong.software 阅读(110) 评论(0) 推荐(0)
摘要: $(function(){ $(".proposal-list").css('display','none'); $('input[name=needname]').click(function () { var d = $(".proposal-list").css('display'); if( 阅读全文
posted @ 2016-09-23 14:16 kong.software 阅读(77) 评论(0) 推荐(0)
摘要: 1. 对于想忽略的文件,可以写入.gitignore文件中,但是.gitignore对于已经tracked的文件是不起作用的,首先执行git rm -r --cached . 操作,删除全部缓存,然后add,commit,这样新的.gitignore就生效了。 2. 拉取github上某仓库的指定版 阅读全文
posted @ 2016-08-26 16:20 kong.software 阅读(134) 评论(0) 推荐(0)
摘要: 希望大家多捧场,没啥写的,祝一切顺利,坚持写。 阅读全文
posted @ 2016-06-24 15:24 kong.software 阅读(83) 评论(0) 推荐(0)