拾迹

Results 6 issues of 拾迹

Fix #111. As mentioned in this issue #111,I had the exact same situation. For the sake of code robustness and reliability, I think this change is necessary.

这里的处理是不是过于强硬了一点,一般在外层都会有容器包裹的,如果宽度是屏幕宽度,就会溢出

针对下面这段代码的输出,着实不解。来自于《你不知道的 js》中卷的第 191 页 ``` var p3 = new Promise(function (resolve, reject) { resolve("B"); }) var p1 = new Promise(function (resolve, reject) { resolve(p3); }) var p2 = new Promise(function...

已回复

```css .prevent_over_scroll_container{ overflow-y: scroll; -webkit-overflow-scrolling: touch; } html, body { width: 100%; height: 100; /* 这里少了个% */ } ```