angular实践-modal组件

功能梳理 modal组件的模版应该有三种类型:内置的alert和confirm,以及自定义模版(字符串或者模版URL) 必须返回Promise,...

2016-05-03 · 6 分钟 · 2903 字 · hang

html中的强调

在HTML能表现出“强调”效果的标签有很strong, em, i, b。虽然它们产生的效果差不多,但是从语义化的角度来看,它们的使用场景是完全不同的。...

2016-05-01 · 2 分钟 · 526 字 · hang

js继承的实现方式

js本身并不是一个面向对象的语言。只能用原型来实现继承。梳理一下js实现继承的几种的方式 修改原型 function parent (name, age) { this.name = name; this.age = age; } parent.prototype.hi = function () { alert('hi! I am' + this.name);...

2015-12-15 · 3 分钟 · 1100 字 · hang

Pyspider抓取clinicaltrials

导语 pyspider是一个基于python的网络爬虫框架,提供了强大的WebUI界面,支持Mysql,MongoDB,PostgreSQL等...

2015-06-13 · 3 分钟 · 1232 字 · hang

自定义laravel中migrate的字段

https://coderwall.com/p/mo1gew/custom-datatype-in-laravel-schema-builder 扩展GRAMMAR和Blueprint类 use Illuminate\Support\Fluent; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Grammars\MySqlGrammar; /** * Extended version of MySqlGrammar with * support of 'set' data type */ class ExtendedMySqlGrammar extends MySqlGrammar { /** * Create the column definition for an 'set' type. * * @param \Illuminate\Support\Fluent $column * @return string */ protected function typeSet(Fluent...

2015-06-07 · 1 分钟 · 237 字 · hang

css 布局

关键属性 float 浮动元素将会从文档的正常流中删除,但是不同于absolute和fixed定位,浮动元素还是会对正常流中的元素产生影响。 正常情况下浮...

2015-04-19 · 5 分钟 · 2100 字 · hang

Archive

archives

0 分钟 · 0 字 · hang