css3 制作奇奇怪怪的背景 内凹圆角的背景: 效果图: 代码如下: .background { display: inline block; background: dabe8d; position: relative; //为了伪类好定位。 width: 400px; height: 400px Read More
posted @ 2017-10-25 16:26 BlackBirch Views(227) Comments(0) Diggs(0) Edit
javascript高级程序设计-第6章 -面向对象的程序设计 ! 构造函数、原型和实例的关系: 每个构造函数都有一个原型对象, 原型对象都包含一个指向构造函数的指针, 而实例都包含一个指向原型对象的内部指针 理解对象 属性类型 数据属性 包含一个数据值的位置。在这个位置可读取写入 4种描述其行为的 Read More
posted @ 2017-08-21 16:45 BlackBirch Views(395) Comments(0) Diggs(0) Edit
1. ` </form ` 2. ` </form function post_info(){ $('form').submit(); } ` 3. / 调用到$.post();没有响应到form的action / ` </form function post_info(){ var name = Read More
posted @ 2017-03-13 09:15 BlackBirch Views(114) Comments(0) Diggs(0) Edit
VCS-enable version control ˊ_>ˋ Read More
posted @ 2016-04-20 01:50 BlackBirch Views(391) Comments(0) Diggs(0) Edit
用的前提考虑浏览器是否支持,internet Explorer10、firefox、opera是支持keyframes规范和animation属性的,而safari和chrome则要使用前缀-webkit-。webapp中:⚠注意:internet explorer9及其更早的版本不支持keyfra... Read More
posted @ 2015-10-16 22:06 BlackBirch Views(179) Comments(0) Diggs(0) Edit
1. 用户权限设置:(⚠最后的';'也要输入。)GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,ALTER ON 数据库名.* TO 用户名@localhost(or ip地址) IDENTIFIED BY '密码';2.显示所有数据库:show data... Read More
posted @ 2015-08-03 12:24 BlackBirch Views(125) Comments(0) Diggs(0) Edit
转载来自阮一峰的网络日志:http://www.ruanyifeng.com/blog/2013/01/javascript_strict_mode.html#comment-267934一、概述除了正常运行模式,ECMAscript 5添加了第二种运行模式:"严格模式"(strict mode)。... Read More
posted @ 2015-08-02 19:13 BlackBirch Views(132) Comments(0) Diggs(0) Edit
mac pro键盘上的KeyCode:还有下面网上书上搜罗来的台式电脑的,收集一下。keycode 8 = BackSpace BackSpacekeycode 9 = Tab Tabkeycode 12 = Clearkeycode 13 = Enterkeycode 16 = Shift_Lke... Read More
posted @ 2015-08-02 16:40 BlackBirch Views(1589) Comments(0) Diggs(0) Edit
在github上找到react入门学习比较好的demo,下面是那个链接:https://github.com/ruanyf/react-demos然后接下来是每个demo的学习笔记:demo1: demo2://js: array.map(callback[,thisArg])对数组的... Read More
posted @ 2015-07-30 21:08 BlackBirch Views(437) Comments(0) Diggs(0) Edit
最近要写一个日历📅来管理一天的事务。用工作室买来的Metronic模版,找到我想要的日历模版。讲讲fullcalendar吧: 我花了两天时间看源码fullcalendar.js。在里面发现了许多jquery-ui里的东西,我摸清了自己很多js已经不用写太多了,大部分写的是ajax请求,将静态代码... Read More
posted @ 2015-07-28 09:54 BlackBirch Views(1344) Comments(0) Diggs(0) Edit