Skip to content

Commit d0a9390

Browse files
author
wangwenjie
committed
update
1 parent 4772b42 commit d0a9390

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1716,6 +1716,26 @@ e.fn1();
17161716

17171717
2、如何检测当前变量为Array
17181718

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+
console.log(i);
1733+
},1000);
1734+
}
1735+
1736+
4、如何将当前ajax查询的列表 以href的方式发给别人(拥有相同权限),其电脑打开链接直接可以看到相同列表数据?
1737+
1738+
17191739
```
17201740

17211741
## <a name='other'>其他问题</a>

0 commit comments

Comments
 (0)