ls
ls
# diaodiao 的 CSS child 选择器 ## 基础的概念和应用 | 选择器 | 🌰 | 🌰描述 | | --- | --- | --- | | :first-child | p:first-child | 选择属于父元素的第一个子元素的每个 元素。 |...
``` javascript class A { constructor(a) { this.a = a } } class B extends A { constructor(a, b) { super(a) this.b = b } } var a = new...
以前一直用`iScroll`这一方案来处理移动端的滚动,这次需要做 PC 上做一个滚动加载更多的功能,因为是 PC 就考虑不用`iScroll`了,然后用 Dash 查了下 `scroll`,看到了以下例子 ``` html #container { position: absolute; height: auto; top: 0; bottom: 0; width: auto; left: 0; right: 0; overflow: auto; } #foo...
``` javascript MessageBox.prompt = function(message, title, options) { if (typeof title === 'object') { options = title; title = ''; } return MessageBox(merge({ title: title, message: message, showCancelButton: true, showInput:...