摘要:
闭包: 在外部访问函数内部的变量:通过函数内部的函数,return 出 函数内部的变量 原型链继承: 结果如下: call: 结果 alert 101 阅读全文
摘要:
在linux mount /dev/vdb 到 /home 分区时报错: # mount /dev/vdb /homemount: you must specify the filesystem type 先执行:mkfs.ext3 /dev/vdb # mkfs.ext3 /dev/vdbmke2 阅读全文
摘要:
一、在服务器上打开 22、80、9011端口: iptables -A INPUT -p tcp --dport 9011 -j ACCEPT iptables -A OUTPUT -p tcp --sport 9011 -j ACCEPT iptables -A INPUT -p tcp --dp 阅读全文
摘要:
一: 在一台可以连接外网的服务器A上配置ntp: 配置 /etc/ntp.conf 文件: server 202.120.2.101 # local clock (LCL) //该机器同步的ntp服务器 restrict 192.168.1.0 mask 255.255.255.0 nomodify 阅读全文
摘要:
display:-webkit-box 把该元素中的所有元素变成块级元素,比如 地图 周边 路线 字体 ul li{ list-style: none; //去掉li 前面的黑点。} .top-nav{ display:-webkit-box; //把上面列表的四个 li 元素变成块级元素,在一行内显示。 border-bot... 阅读全文
摘要:
一: private String[] data = new String[]{"Hello", "jike", "world"}; 二: 创建数组对象: 阅读全文
摘要:
在 .getJSON 中,可以 传递 Phones 这个参数,在java servlet 接口中接收参数。 根据逻辑做处理,通过 pw.print(2) 返回不同的 data 值: 阅读全文
摘要:
mongodb 根据_id 查询记录: 根据集合中的某个字段查询: 阅读全文