We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4772b42 commit d0a9390Copy full SHA for d0a9390
README.md
@@ -1716,6 +1716,26 @@ e.fn1();
1716
1717
2、如何检测当前变量为Array?
1718
1719
+Array.isArray();
1720
+
1721
+3、如下两种情况分别输出什么?
1722
1723
+setTimeout(function(){
1724
+ for(var i = 0; i<10; i++){
1725
+ console.log(i);
1726
+ }
1727
+},1000);
1728
1729
1730
+for(var i=0; i<10;i++){
1731
+ setTimeout(function(){
1732
1733
+ },1000);
1734
+}
1735
1736
+4、如何将当前ajax查询的列表 以href的方式发给别人(拥有相同权限),其电脑打开链接直接可以看到相同列表数据?
1737
1738
1739
```
1740
1741
## <a name='other'>其他问题</a>
0 commit comments