上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: 阅读全文
posted @ 2016-12-26 17:27 龍飛鳯舞 阅读(174) 评论(0) 推荐(0)
摘要: css1: css2: 阅读全文
posted @ 2016-12-16 09:16 龍飛鳯舞 阅读(206) 评论(0) 推荐(0)
摘要: DOM extend 1 2 3 4 阅读全文
posted @ 2016-12-14 08:58 龍飛鳯舞 阅读(187) 评论(0) 推荐(0)
摘要: /** * 属性 * childNodes 子节点 * nextSibling 下一个节点 * previousSibling 上一个节点 * parentNode 父节点 * firstChild 第一个子节点 * lastChild 最后一个子节点 * hasChildNodes 判断是否有子节... 阅读全文
posted @ 2016-12-09 09:10 龍飛鳯舞 阅读(156) 评论(0) 推荐(0)
摘要: var obj = {'a':'a'}; var fun = function (){} console.log(typeof obj);//object console.log(typeof fun);//function var a; console.log(a === undefined);//true console.log(typeof b);//true 未声明的变量使用会报错,但是... 阅读全文
posted @ 2016-11-26 23:06 龍飛鳯舞 阅读(405) 评论(0) 推荐(0)
摘要: javascript面向对象和php不太一样,语法不太相同,总结如下 阅读全文
posted @ 2016-10-19 14:48 龍飛鳯舞 阅读(134) 评论(0) 推荐(0)
摘要: cURL基本设置项 利用curl获取网络图片 阅读全文
posted @ 2016-10-10 21:25 龍飛鳯舞 阅读(7140) 评论(1) 推荐(0)
摘要: 1、万物皆对象;所有的属性和方法都隶属于window document.getElementById('id') = window.document.getElementById('id') 获取浏览器可视区域的万能方法 var w = window.innerWidth || document.d 阅读全文
posted @ 2016-08-19 11:18 龍飛鳯舞 阅读(264) 评论(0) 推荐(0)
摘要: $memcache = new Memcache; $memcache->connect('localhost',11211) or die('Could not connect'); //memcache 版本 $version = $memcache->getversion(); //php手册中的demo $tmp_object = new stdClass; $tmp_object-... 阅读全文
posted @ 2016-08-03 16:47 龍飛鳯舞 阅读(247) 评论(0) 推荐(0)
摘要: cbc // [1] => cfb // [2] => ctr // [3] => ecb // [4] => ncfb // [5] => nofb // [6] => ofb // [7] => stream // ) //当前mcrypt支持的算法 $algorithms_li... 阅读全文
posted @ 2016-08-03 11:58 龍飛鳯舞 阅读(662) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页